Crates.io | lfu_cache |
lib.rs | lfu_cache |
version | 1.3.0 |
source | src |
created_at | 2021-03-20 21:14:32.94715 |
updated_at | 2023-05-18 07:20:43.268685 |
description | A simple constant time LFU cache implementation |
homepage | |
repository | https://github.com/edward-shen/lfu-cache |
max_upload_size | |
id | 371484 |
size | 113,260 |
An implementation of a constant time Least Frequently Used (LFU) cache roughly based on the paper by Shah, Mitra, and Matani.
use lfu_cache::LfuCache;
let mut cache = LfuCache::with_capacity(2);
// Fill up the cache.
cache.insert("foo", 3);
cache.insert("bar", 4);
// Insert returns the evicted value, if a value was evicted, in case additional
// bookkeeping is necessary for the value to be dropped.
let maybe_evicted = cache.insert("baz", 5);
// In the case of a tie, the most recently added value is evicted.
assert!(cache.get(&"bar").is_none());
assert_eq!(maybe_evicted, Some(4));
cache.get(&"baz");
// Otherwise, the least frequently value is evicted.
assert_eq!(cache.pop_lfu(), Some(3));
miri
).i32
as
elements; see benches.rs
for bench implementation).unsafe
as it works with raw pointers.lfu
crate for an implementation written in only safe Rust.matthusifer/lfu_rs
for another implementation of the
same paper.This implementation very closely follows the paper, but has one modification to
ensure correctness. Each node in the node list contains a Rc
containing the
key it was stored under, and the lookup table instead is indexed on a Rc<Key>
instead. This is to ensure that the correct key-value in the lookup table can
be evicted when popping the least frequently used item.
This modification was necessary as the hash is surjective, and so each item necessarily needs to contain some reference to the original key it was stored under to ensure that we evict the correct key during hash collisions.
An alternative solution would be to use an monotonically increasing counter, but
the additional bookkeeping over an Rc
which functionally provides the same
benefit is unnecessary.
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.