Crate clockpro_cache

Source
Expand description

This is an implementation of the CLOCK-Pro cache algorithm.

CLOCK-Pro keeps track of recently referenced and recently evicted cache entries, which allows it to avoid the evictions that weak access patterns such as scan and loop typically induce in LRU and CLOCK.

Structsยง

ClockProCache
A CLOCK-Pro cache that maps keys to values.