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
While working on #804 I realized that in some cases caching Bytes to byte[] conversion would probably be faster than always allocating new byte array in some situations. This is mainly when there is small set of columns(or a small set of families or qualifiers). When all of the columns are unique, trying to cache could hurt performance. So the code would need to adapt to this situation and possible stop using the cache when the hit rate is low.
Flutation line 52 is the code where this optimization could be made.
The text was updated successfully, but these errors were encountered:
While working on #804 I realized that in some cases caching Bytes to byte[] conversion would probably be faster than always allocating new byte array in some situations. This is mainly when there is small set of columns(or a small set of families or qualifiers). When all of the columns are unique, trying to cache could hurt performance. So the code would need to adapt to this situation and possible stop using the cache when the hit rate is low.
Flutation line 52 is the code where this optimization could be made.
The text was updated successfully, but these errors were encountered: