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
High number of allocations involving Payload.Key was observed.
Payload.Key
Payload.Key is a slice of KeyPart. KeyPart consists of uint16 and []byte.
KeyPart
uint16
[]byte
Updates epic #1744
Determine if it's feasible to modify Payload.Key to reduce number of allocations.
The text was updated successfully, but these errors were encountered:
I'm closing this because it is addressed by PR #2930 and PR #2560.
Sorry, something went wrong.
fxamacker
Successfully merging a pull request may close this issue.
Problem
High number of allocations involving
Payload.Key
was observed.Payload.Key
is a slice ofKeyPart
.KeyPart
consists ofuint16
and[]byte
.Updates epic #1744
The Proposed Solution
Determine if it's feasible to modify
Payload.Key
to reduce number of allocations.The text was updated successfully, but these errors were encountered: