Open meling opened 1 year ago
The marshaling code currently uses uint64 for all lengths, including each bit vector length. We can probably get away with a uint32 instead for these, thus saving 4 bytes per bit vector used to represent the BBHash on the wire/disk.
uint64
uint32
BBHash
The marshaling code currently uses
uint64
for all lengths, including each bit vector length. We can probably get away with auint32
instead for these, thus saving 4 bytes per bit vector used to represent theBBHash
on the wire/disk.