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
Looking at OffHeapStorage, the entire byte[] array that holds all the data is created everytime (extra copy) ... only to pass it to the deserializer.
That can be avoided using ProtostuffIOUtil.mergeFrom(byteBufferInputStream, buffer8k, pojo, schema) (to be added in the api).
Thanks to David Yu for the hint
The text was updated successfully, but these errors were encountered:
Thanks to David Yu for the hint
The text was updated successfully, but these errors were encountered: