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
@non A reason why ByteBuffer in JVM is slow is it generates TypeProfile https://wiki.openjdk.java.net/display/HotSpot/TypeProfile to resolve a single method from many ByteBuffer sub classes in Java standard libraries. So each ByteBuffer.get(i) call will look up the TypeProfile table and become slower than Array[Byte] lookup.
This is relatively slow for some reason. Figure out why!
The text was updated successfully, but these errors were encountered: