ricecoder_storage/cache/
mod.rs

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