lcpfs 2026.1.102

LCP File System - A ZFS-inspired copy-on-write filesystem for Rust
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Caching subsystems.
//!
//! Memory and SSD caching including ARC (Adaptive Replacement Cache),
//! L2ARC (SSD cache), and space map allocation tracking.

/// Adaptive Replacement Cache (ARC) - memory cache.
pub mod arc;
/// Level 2 ARC - SSD/persistent cache tier.
pub mod l2arc;
/// Space map - allocation tracking.
pub mod spacemap;

pub use arc::*;
pub use l2arc::*;
pub use spacemap::*;