1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
//! Tiered runtime cache primitives. pub(crate) mod pipeline; pub use lru::AccessTracker; pub use tiered_cache::{AccessStats, CacheEntry, CacheError, CacheTier, LruPolicy, TieredCache}; /// LRU tracking. pub mod lru; /// Multi-tier cache storage, policy, and errors. pub mod tiered_cache; /// Cache test suites. #[cfg(test)] pub mod tests;