#lru-cache #lru

concurrent_lru

A concurrent LRU cache

2 unstable releases

0.2.0 Feb 14, 2021
0.1.0 Feb 14, 2021

#465 in Concurrency

Download history 1013/week @ 2023-12-14 536/week @ 2023-12-21 404/week @ 2023-12-28 829/week @ 2024-01-04 915/week @ 2024-01-11 1715/week @ 2024-01-18 1507/week @ 2024-01-25 3554/week @ 2024-02-01 1983/week @ 2024-02-08 1705/week @ 2024-02-15 1577/week @ 2024-02-22 986/week @ 2024-02-29 909/week @ 2024-03-07 707/week @ 2024-03-14 968/week @ 2024-03-21 1046/week @ 2024-03-28

3,764 downloads per month
Used in 4 crates (2 directly)

MIT license

35KB
739 lines

Concurrent LRU

crates.io Badge docs.rs Badge License Badge

An implementation of a concurrent LRU cache. It is designed to hold heavyweight resources, e.g. file descriptors, disk pages. The implementation is heavily influenced by the LRU cache in LevelDB.

Currently there are two implementations, unsharded and sharded.

  • unsharded is a linked hashmap protected by a big lock.
  • sharded shards unsharded by key, providing better performance under contention.

Example

use concurrent_lru::sharded::LruCache;
use std::{fs, io};

fn read(_f: &fs::File) -> io::Result<()> {
    // Maybe some positioned read...
    Ok(())
}

fn main() -> io::Result<()> {
    let cache = LruCache::<String, fs::File>::new(10);

    let foo_handle = cache.get_or_try_init("foo".to_string(), 1, |name| {
        fs::OpenOptions::new().read(true).open(name)
    })?;
    read(foo_handle.value())?;
    drop(foo_handle); // Unpin foo file.

    // Foo is in the cache.
    assert!(cache.get("foo".to_string()).is_some());

    // Evict foo manually.
    cache.prune();
    assert!(cache.get("foo".to_string()).is_none());

    Ok(())
}

Contribution

Contributions are welcome! Please fork the library, push changes to your fork, and send a pull request. All contributions are shared under an MIT license unless explicitly stated otherwise in the pull request.

Performance

TODO

Dependencies

~49KB