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
With mapped ByteBuffer we could avoid some byte[] copying and improve performance. So we need to verify if using ByteBuffer all the way to DataInputOutput actually improves performance.
The text was updated successfully, but these errors were encountered:
No, it should not. Direct buffers are much slower for incremental writes than heap buffers. Bulk byte[] copy is fine. Rewriting core would not bring much performance gain
With mapped ByteBuffer we could avoid some byte[] copying and improve performance. So we need to verify if using ByteBuffer all the way to DataInputOutput actually improves performance.
The text was updated successfully, but these errors were encountered: