You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Use String to pass messages. String is immutable, but many String objects cannot be reused
Describe the solution you'd like
Add an interface for message.fromBytes
Describe alternatives you've considered
Use ByteBuffer instead
Additional context
In a trading system, we want to reduce gc and increase object reuse, and if we think in terms of byte[], object reuse will increase
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Use String to pass messages. String is immutable, but many String objects cannot be reused
Describe the solution you'd like
Add an interface for message.fromBytes
Describe alternatives you've considered
Use ByteBuffer instead
Additional context
In a trading system, we want to reduce gc and increase object reuse, and if we think in terms of byte[], object reuse will increase
The text was updated successfully, but these errors were encountered: