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
Issue: There is a lot of byte[] allocated when handling TCP messages:
It's better to have a ByteArray pool allocator so that byte[] can be reused and avoid creating massive garbage for the GC and the throughput can be even better.
Issue: There is a lot of
byte[]
allocated when handling TCP messages:It's better to have a ByteArray pool allocator so that
byte[]
can be reused and avoid creating massive garbage for the GC and the throughput can be even better.For example:
The text was updated successfully, but these errors were encountered: