pagedb 0.1.0-beta.1

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
15
//! Transaction layer: `ReadTxn` / `WriteTxn` / Db façade and group-commit
//! infrastructure.

pub mod db;
pub mod group_commit;
pub mod mode;
pub mod policy;
pub mod read;
pub mod write;

pub use db::Db;
pub use mode::DbMode;
pub use policy::ReaderStallPolicy;
pub use read::ReadTxn;
pub use write::{CounterRef, ScratchOffset, SpillScope, WriteTxn};