mindb 0.1.2

Lightweight embedded key–value store with write-ahead log and zstd compression.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Secondary index sidecars that enrich lookups beyond the primary key.
#![allow(dead_code)]

pub mod fts;
pub mod json_trie;
pub mod roaring;
pub mod slug;
pub mod time_fence;

pub use fts::FullTextSidecar;
pub use json_trie::JsonTrieSidecar;
pub use roaring::RoaringBitmapSidecar;
pub use slug::SlugMap;
pub use time_fence::TimeFenceIndex;