1 2 3 4 5 6 7 8 9
//! Policy modules for cache eviction, hydration, and squeezing. pub mod cache; pub mod hydration; pub mod squeeze; pub use cache::*; pub use hydration::*; pub use squeeze::*;