cachekit 0.2.0-alpha

High-performance cache primitives with pluggable eviction policies (LRU, LFU, FIFO, 2Q, Clock-PRO, S3-FIFO) and optional metrics.
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod clock;
pub mod clock_pro;
pub mod fast_lru;
pub mod fifo;
pub mod heap_lfu;
pub mod lfu;
pub mod lru;
pub mod lru_k;
pub mod s3_fifo;
pub mod two_q;