pagedb 0.1.0-beta.3

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
//! Engine-owned encrypted segment files. Append-mostly, sealed atomically,
//! identity-keyed paths.

pub(crate) mod authenticated_metadata;
#[cfg(not(target_arch = "wasm32"))]
pub mod mmap;
pub mod reader;
pub mod types;
pub mod writer;

pub use reader::SegmentReader;
pub use types::{ExtentRef, GcStats, MmapView, PageId, SegmentPageKind};
pub use writer::SegmentWriter;