pagedb 0.1.0-beta.6

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
//! `BTree` — the `CoW` shadow-paging B+ tree.

pub(crate) mod bulk;
pub(crate) mod core;
pub(crate) mod flush;
pub(crate) mod maintenance;
pub(crate) mod navigate;
pub(crate) mod read;
pub(crate) mod scan;
pub(crate) mod write;

pub use core::BTree;