Introduce heed codecs to retrieve the length of roaring bitmaps

This commit is contained in:
Kerollmops
2021-02-18 14:24:30 +01:00
parent fcfb39c5de
commit 8d710c5130
9 changed files with 130 additions and 4 deletions

View File

@ -26,6 +26,7 @@ pub use self::external_documents_ids::ExternalDocumentsIds;
pub use self::fields_ids_map::FieldsIdsMap;
pub use self::heed_codec::{BEU32StrCodec, StrStrU8Codec, ObkvCodec};
pub use self::heed_codec::{RoaringBitmapCodec, BoRoaringBitmapCodec, CboRoaringBitmapCodec};
pub use self::heed_codec::{RoaringBitmapLenCodec, BoRoaringBitmapLenCodec, CboRoaringBitmapLenCodec};
pub use self::index::Index;
pub use self::search::{Search, FacetDistribution, FacetCondition, SearchResult};
pub use self::update_store::UpdateStore;