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
//! Pager: cache, page envelopes, header IO, AEAD dispatch.

pub mod cache;
pub mod core;
pub mod format;
pub mod freelist;
pub mod header;

pub use cache::PageCache;
pub use core::{FileKey, PageGuard, Pager, PagerConfig};
pub use format::{data_page, page_kind::PageKind, segment_footer, structural_header};