Expand description
Proxy cache management: LRU eviction, TTL-based staleness, and utilisation tracking.
Provides a simple in-memory cache that tracks proxy files by path, access time, and hit count. Eviction strategies include LRU (least-recently used), TTL (time-to-live), and LFU (least-frequently used).
Structs§
- Cache
Entry - A single entry in the proxy cache.
- Proxy
Cache - In-memory proxy cache with configurable capacity.
Enums§
- Cache
Policy - Eviction policy for the proxy cache.