noxu-rep 7.0.0

Replication and high availability for Noxu DB
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! VLSN tracking subsystem.
//!
//! tracks the mapping from VLSNs
//! (Virtual Log Sequence Numbers) to LSNs (Log Sequence Numbers) and
//! maintains the range of VLSNs available on this node.

pub mod persist;
pub mod vlsn_bucket;
pub mod vlsn_index;
pub mod vlsn_range;

pub use persist::{
    VlsnPersistError, flush_to_disk, index_path, load_from_disk,
};
pub use vlsn_bucket::VlsnBucket;
pub use vlsn_index::VlsnIndex;
pub use vlsn_range::VlsnRange;