Introduce an heed codec that reduce the size of small amount of serialized integers

This commit is contained in:
Kerollmops 2020-09-07 15:42:20 +02:00 committed by Clément Renault
parent 3e2250423c
commit 5664c37539
No known key found for this signature in database
GPG key ID: 92ADA4E935E71FA4
5 changed files with 50 additions and 14 deletions

View file

@ -1,7 +1,9 @@
mod beu32_str_codec;
mod byteorder_x_roaring_bitmap_codec;
mod csv_string_record_codec;
mod roaring_bitmap_codec;
mod beu32_str_codec;
pub use self::beu32_str_codec::BEU32StrCodec;
pub use self::byteorder_x_roaring_bitmap_codec::ByteorderXRoaringBitmapCodec;
pub use self::csv_string_record_codec::CsvStringRecordCodec;
pub use self::roaring_bitmap_codec::RoaringBitmapCodec;
pub use self::beu32_str_codec::BEU32StrCodec;