nebari 0.5.5

ACID-compliant database storage implementation using an append-only file format.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! ACID-compliant transaction log and manager.

mod log;
mod manager;
mod state;

pub use self::{
    log::{LogEntry, TransactionLog},
    manager::*,
    state::*,
};