1 2 3 4 5 6 7 8 9 10 11 12
# cache ### Purpose LRU response cache with TTL and eviction statistics. ### Responsibility | File | Purpose | |------|---------| | `mod.rs` | Module root — re-exports `Cache` type and configuration | | `implementation.rs` | LRU cache implementation with TTL, eviction, and statistics |