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
13
14
15
//! `CoW` B+ tree (Layer 3a): sorted `bytes→bytes` table over the Pager.

pub(crate) mod internal;
pub(crate) mod leaf;
pub(crate) mod node;
pub(crate) mod overflow;
pub(crate) mod scan;
pub(crate) mod split;
#[cfg(test)]
mod tests;
pub(crate) mod tree;

// `pub` here is crate-scoped in effect: the `btree` module itself is
// `pub(crate)`, so this does not escape the crate.
pub use tree::BTree;