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
//! Applying an incremental snapshot to a Follower: the delta stream, the staged
//! `main.db` image it is written into, and the segment staging area.

#![cfg(not(target_arch = "wasm32"))]

pub(crate) mod delta;
pub(crate) mod image;
pub(crate) mod segments;

pub(crate) use delta::{plan_delta_stream, write_delta_into_image};
pub(crate) use image::{clone_base_image, discard_staged_image, staged_image_path};
pub(crate) use segments::{stage_snapshot_segments, validate_snapshot_segment_count};