56 releases

Uses old Rust 2015

0.13.0 Jan 28, 2025
0.12.5 Oct 7, 2024
0.12.4 Jul 31, 2024
0.12.3 Feb 24, 2024
0.1.1 Dec 31, 2016

#1 in Caching

Download history 1037680/week @ 2024-10-30 963968/week @ 2024-11-06 1092001/week @ 2024-11-13 986911/week @ 2024-11-20 848597/week @ 2024-11-27 1019820/week @ 2024-12-04 1045474/week @ 2024-12-11 726273/week @ 2024-12-18 375368/week @ 2024-12-25 721403/week @ 2025-01-01 1090207/week @ 2025-01-08 1043398/week @ 2025-01-15 1033311/week @ 2025-01-22 1086534/week @ 2025-01-29 1290491/week @ 2025-02-05 1029888/week @ 2025-02-12

4,621,844 downloads per month
Used in 3,505 crates (409 directly)

MIT license

94KB
1.5K SLoC

LRU Cache

Build Badge Codecov Badge crates.io Badge docs.rs Badge License Badge

Documentation

An implementation of a LRU cache. The cache supports put, get, get_mut and pop operations, all of which are O(1). This crate was heavily influenced by the LRU Cache implementation in an earlier version of Rust's std::collections crate.

The MSRV for this crate is 1.65.0.

Example

Below is a simple example of how to instantiate and use a LRU cache.

extern crate lru;

use lru::LruCache;
use std::num::NonZeroUsize;

fn main() {
    let mut cache = LruCache::new(NonZeroUsize::new(2).unwrap());
    cache.put("apple", 3);
    cache.put("banana", 2);

    assert_eq!(*cache.get(&"apple").unwrap(), 3);
    assert_eq!(*cache.get(&"banana").unwrap(), 2);
    assert!(cache.get(&"pear").is_none());

    assert_eq!(cache.put("banana", 4), Some(2));
    assert_eq!(cache.put("pear", 5), None);

    assert_eq!(*cache.get(&"pear").unwrap(), 5);
    assert_eq!(*cache.get(&"banana").unwrap(), 4);
    assert!(cache.get(&"apple").is_none());

    {
        let v = cache.get_mut(&"banana").unwrap();
        *v = 6;
    }

    assert_eq!(*cache.get(&"banana").unwrap(), 6);
}

Dependencies

~1MB
~12K SLoC