Skip to main content

Module cache

Module cache 

Source
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ยง

CacheKey
Key that uniquely identifies a shaping request.
ShapingCache
LRU cache mapping CacheKey โ†’ ShapedText.