mace-kv 0.0.28

A fast, cross-platform embedded key-value storage engine with ACID, MVCC, and flash-optimized storage
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub use index::txn::{TxnKV, TxnView};
pub(crate) use store::store::Store;
pub use store::store::{Bucket, Mace};
pub use store::{MetaVacuumStats, VacuumStats};
pub use utils::observe;
pub use utils::{OpCode, RandomPath, options::Options};

mod cc;
mod index;
mod io;
mod map;
mod meta;
mod store;
mod utils;

mod types;
pub use index::{Iter, ValRef};