mace-kv 0.0.34

A fast, cross-platform embedded key-value storage engine with ACID, MVCC, and flash-optimized storage
Documentation
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::{BucketOptions, Options},
};

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

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