Expand description
Add LRU (least recently used) caching to a given store.
Structs§
- The configuration type for the
LruCachingStore
. - We take a store, a maximum size and build a LRU-based system.
- The parametrization of the cache
Constants§
- The maximum number of entries in the cache. If the number of entries in the cache is too large then the underlying maps become the limiting factor
Type Aliases§
- A memory store with caching.