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
Problem: when data is read from stream it automatically decoded in most suitable form. It works well except with strings because it create overhead.
Solution:
store string as byte[] and convert on demand.
let read strings as streams (this is for the case when someone storing images in String columns)
The text was updated successfully, but these errors were encountered:
chernser
changed the title
[Hypothesis] Storing strings as byte arrays (and then converting to String on demand) may provide better deserialization performance
[client-v2] Add support of working with large strings
Apr 1, 2025
Problem: when data is read from stream it automatically decoded in most suitable form. It works well except with strings because it create overhead.
Solution:
byte[]
and convert on demand.The text was updated successfully, but these errors were encountered: