We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is what you see when you do an allocation profile of kubo when under load (ipfs add & ipfs get & gateway).
ipfs add
ipfs get
The goal is to reduce CPU usage by running GC less often, reduce stop the world events (and cooperative preamptions) and finaly give better latency.
This is a collection of smallish refactors that we should fix :
blocks.Block
multiaddr.Protocols
multiaddr.AppendProtocols
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is what you see when you do an allocation profile of kubo when under load (
ipfs add
&ipfs get
& gateway).The goal is to reduce CPU usage by running GC less often, reduce stop the world events (and cooperative preamptions) and finaly give better latency.
This is a collection of smallish refactors that we should fix :
blocks.Block
go-block-format#45multiaddr.Protocols
, adding amultiaddr.AppendProtocols
(and using it), woud allow to reuse slice capacity: perf: Add AppendProtocols for a an allocation free to get the protocols multiformats/go-multiaddr#188The text was updated successfully, but these errors were encountered: