Skip to main content

Module cache

Module cache 

Source
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.