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
I think the separate compression for each path is interesting but I couldn't tell from the README how it gets applied to arrays. If I have a sequence of messages and there is an array field, is every index of the array considered the leaf of a different path, or are the arrays concatenated for purposes of compression or ...?
The text was updated successfully, but these errors were encountered:
The arrays are concatenated for purposes of compression. There is a separate path for the length of the arrays to compress as well. So, imagine you have [[0, 1, 2], [2, 2, 3], [1]]. This becomes: lengths: [3, 3, 1], data: [0, 1, 2, 2, 2, 3, 1].
I think the separate compression for each path is interesting but I couldn't tell from the README how it gets applied to arrays. If I have a sequence of messages and there is an array field, is every index of the array considered the leaf of a different path, or are the arrays concatenated for purposes of compression or ...?
The text was updated successfully, but these errors were encountered: