evict 0.3.1

Page eviction policies: LRU, LRU-k, LIRS, SLRU etc
Documentation
1
2
3
4
5
6
7
mod lru;
mod lru_k;

pub use {
    lru::LruReplacer,
    lru_k::{LRUK_REPLACER_K, LRUK_REPLACER_REF_PERIOD, LruKConfig, LruKReplacer},
};