1 2 3 4 5 6 7 8
//! Cache management for RiceCoder storage //! //! Provides caching abstractions and file-based cache storage for performance optimization. pub mod manager; // Re-export commonly used types pub use manager::{CacheEntry, CacheInvalidationStrategy, CacheManager};