Expand description
Hand-rolled LRU shaping cache โ no external lru crate.
Uses std::collections::HashMap for O(1) lookup and a
std::collections::VecDeque as a recency queue (front = most recently
used).
Structsยง
- Cache
Key - Key that uniquely identifies a shaping request.
- Shaping
Cache - LRU cache mapping
CacheKeyโShapedText.