Expand description
Exposes cache collection module.
Modulesยง
- heapless_
btree_ lru_ cache - Stack-allocated LRU cache using a sorted index for $O(\log N)$ lookups.
- heapless_
linear_ lru_ cache - Stack-allocated LRU cache using linear search for $O(N)$ lookups.
- heapless_
lru_ cache - Stack-allocated LRU cache using an IndexMap for $O(1)$ lookups.
- lru_
cache - LRU cache that lives on the stack and spills to the heap.