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
mod model;
mod orchestrator;

pub use model::{
    CatalogRecoveryReport, DataWalRecoveryContext, DataWalRecoveryOutcome, DataWalRecoveryReport,
    RecoveredDatabase, RecoveryLimits, WalRecovery,
};
pub(crate) use orchestrator::validate_database_root_files;
pub use orchestrator::DatabaseRecovery;

#[cfg(test)]
mod tests;