A weighted, futures-aware Rust LFU cache which supports a custom eviction policy.
LFUCache
is not thread-safe by itself; for thread safety, use a tokio::sync::Mutex
.
Example: ```rust use asynctrait::asynctrait; use futures::executor::block_on; use freqache::LFUCache;
struct Entry;
impl freqache::Entry for Entry { fn weight(&self) -> u64 { 1 } }
struct Policy;
impl freqache::Policy
async fn evict(&self, key: String, value: &Entry) {
// maybe backup the entry contents here
}
}
let mut cache = LFUCache::new(1, Policy); cache.insert("key".to_string(), Entry);
if cache.isfull() { blockon(cache.evict()); } ```