Crate evicting_cache_map

Source
Expand description

This crate offers an evicting cache map. The map has a fixed capacity and will prune the oldest element to make room for a newer element. Optionally, a lambda can be provided which will be called with the Key-Value pair upon pruning.

Modules§

evicting_cache_map
An Ordered Map implementation

Structs§

EvictingCacheMap
An evicting cache map.