Open imor opened 6 months ago
Currently we use usize to represent the length of an event which is 8 bytes on a 64-bit architecture. This can be replaced by a varint to reduce space used as most events' length will fit in a few bytes.
usize
Currently we use
usize
to represent the length of an event which is 8 bytes on a 64-bit architecture. This can be replaced by a varint to reduce space used as most events' length will fit in a few bytes.