Skip to main content

rust_serv/memory_cache/
mod.rs

1//! Memory cache module for high-performance file caching
2//! 
3//! This module provides an in-memory LRU cache for frequently accessed files,
4//! reducing disk I/O and improving response times.
5
6mod cache;
7mod cached_file;
8mod stats;
9
10pub use cache::{CacheConfig, MemoryCache};
11pub use cached_file::CachedFile;
12pub use stats::CacheStats;