regolith 0.1.1

ACID, performance oriented, embedded key-value database engine for edge systems
Documentation
1
2
3
4
5
6
7
8
9
//! Transactions on top of `kovan_mvcc`.
//!
//! kovan-mvcc owns the protocol: timestamps, prewrite, commit, conflict
//! detection and isolation. This module owns only the storage it drives,
//! so the transaction semantics come from one implementation rather than
//! from two that have to agree.
pub(crate) mod layout;
pub(crate) mod storage;
pub(crate) mod txn;