radixdb-storage 1.1.0

Storage contracts and physical persistence engine for RadixDB
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod codec;
mod model;
mod publication;
mod restore;

pub use codec::{decode_snapshot_manifest, encode_snapshot_manifest};
pub use model::{
    SnapshotIndexPolicy, SnapshotLocatorSuffix, SnapshotManifest, SnapshotMember,
    SnapshotMemberKind, MAX_SNAPSHOT_MANIFEST_BYTES, MAX_SNAPSHOT_MEMBERS, MAX_SNAPSHOT_WAL_BYTES,
    SNAPSHOT_MEMBER_BYTES,
};
pub use publication::{commit_snapshot_manifest, open_snapshot_manifest, SNAPSHOT_MANIFEST_FILE};
pub use restore::{restore_snapshot, SnapshotRestoreOutcome};