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
14
15
16
17
mod collector;
mod discovery;
mod filesystem;
mod member;
mod model;
mod reachability;

#[cfg(test)]
mod tests;

pub use collector::ArtifactGarbageCollector;
pub(crate) use member::{ImmutableMemberLocator, ImmutableMemberRef};
pub use model::{
    ArtifactCleanupLimits, ArtifactCleanupReport, CleanupGeneration, MAX_CLEANUP_ACCOUNTED_BYTES,
    MAX_CLEANUP_FILES, MAX_CLEANUP_MUTATIONS, MAX_CLEANUP_WALL_TIME,
};
pub(crate) use reachability::ArtifactReachability;