pagedb 0.1.0-beta.4

Encrypted, portable, embedded page store with B+ tree and segment-file surfaces.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! `WriteTxn` and its supporting types: the exclusive write session, spill
//! scratch storage, durable monotonic counters, and the commit path.

mod commit;
mod counter;
mod spill;
#[cfg(test)]
mod tests;
mod txn;

pub use counter::CounterRef;
pub use spill::{ScratchOffset, SpillScope};
pub(crate) use txn::SegmentSideEffect;
pub use txn::WriteTxn;