#lru-cache #lru #cache #key-value #recently #structures #flexible

lrumap

A safe Least Recently Used (LRU) cache implementation with ordered and unordered support

2 unstable releases

0.1.0 Jan 25, 2023
0.0.0-reserve.0 Apr 12, 2022

#71 in Caching

Download history 552/week @ 2023-12-15 149/week @ 2023-12-22 361/week @ 2023-12-29 588/week @ 2024-01-05 862/week @ 2024-01-12 938/week @ 2024-01-19 815/week @ 2024-01-26 451/week @ 2024-02-02 229/week @ 2024-02-09 363/week @ 2024-02-16 549/week @ 2024-02-23 909/week @ 2024-03-01 1363/week @ 2024-03-08 833/week @ 2024-03-15 1054/week @ 2024-03-22 660/week @ 2024-03-29

4,118 downloads per month

MIT/Apache

60KB
1K SLoC

LruMap

lrumap forbids unsafe code lrumap is considered alpha crate version Live Build Status HTML Coverage Report for main branch Documentation

A set of safe Least-Recently-Used (LRU) cache types aimed at providing flexible map-like structures that automatically evict the least recently used key and value when its capacity is reached.

Safety

This crate includes #![forbid(unsafe)]. To implement the LruHashMap and LruBTreeMap types, each entry's Key type is stored twice, which requires the Key type to implement Clone. If the Key type is expensive to clone, consider wrapping it in an Rc or Arc, or consider an LRU implementation that uses unsafe to avoid this requirement.

LRU Implementation

This crate utilizes an "arena"-style linked list implementation, where all nodes of the linked list are stored in a Vec. Instead of using pointers to the nodes, all references to a node in the linked list is done using an index into the Vec.

This allows all LRU list operations to be performed in constant time and remain very efficient. Each of the implementations in this crate use this internal LRU linked list implementation.

LruHashMap

The LruHashMap type is an LRU implementation that internally uses a HashMap to track keys. Its performance characteristics will be similar to the underlying hash map and hash implementation.

For most users, this type will be the best choice.

This crate has no features enabled by default, but transparently can switch to hashbrown and its default hasher by enabling feature hashbrown.

use lrumap::{LruHashMap, Removed};

let mut lru = LruHashMap::new(3);
lru.push(1, "one");
lru.push(2, "two");
lru.push(3, "three");

// The cache is now full. The next push will evict the least recently touched entry.
let removed = lru.push(4, "four");
assert_eq!(removed, Some(Removed::Evicted(1, "one")));

LruBTreeMap

The LruBTreeMap type is an LRU implementation that internally uses a BTreeMap to track keys. Its performance characteristics will be similar to the underlying container implementation.

By using a BTreeMap to track keys, this type enables efficient range-based queries:

use lrumap::LruBTreeMap;

let mut lru = LruBTreeMap::new(5);
lru.extend([(1, 1), (2, 2), (3, 3), (4, 4), (5, 5)]);
assert_eq!(lru.most_recent_in_range(2..=4).unwrap().key(), &4);

// Change the order by retrieving key 2.
lru.get(&2);
assert_eq!(lru.most_recent_in_range(2..=4).unwrap().key(), &2);

Why another LRU crate?

For Nebari, we needed to introduce an LRU cache to the StdFileManager to close files that haven't been used recently. Each file can have multiple readers, leading to an issue of needing to scan the LRU map for all values that match a specific file. In the end, @ecton decided an LRU implementation that used a BTreeMap instead of a HashMap would be able to solve this problem by offering an most_recent_in_range(key) function. No existing crates seemed to offer this functionality.

Open-source Licenses

This project, like all projects from Khonsu Labs, are open-source. This repository is available under the MIT License or the Apache License 2.0.

To learn more about contributing, please see CONTRIBUTING.md.

Dependencies

~0–425KB