5 releases

0.1.4 Jan 17, 2024
0.1.3 Jan 17, 2024
0.1.2 Jan 17, 2024
0.1.1 Jan 17, 2024
0.1.0 Jan 16, 2024

#112 in Caching

Download history 73/week @ 2024-01-12 17/week @ 2024-01-19 10/week @ 2024-02-09 9/week @ 2024-02-16 17/week @ 2024-02-23 75/week @ 2024-03-01 162/week @ 2024-03-08 82/week @ 2024-03-15 32/week @ 2024-03-22 70/week @ 2024-03-29 65/week @ 2024-04-05

303 downloads per month
Used in encrypted-dns

MIT license

11KB
178 lines

dependency status

SIEVE cache

This is an implementation of the SIEVE cache replacement algorithm for Rust.

SIEVE is an eviction algorithm simpler than LRU that achieves state-of-the-art efficiency on skewed workloads.

This implementation exposes the same API as the clock-pro and arc-cache crates, so it can be used as a drop-in replacement for them in existing applications.

Usage example

use sieve_cache::SieveCache;

// Create a new cache with a capacity of 100000.
let mut cache: SieveCache<String, String> = SieveCache::new(100000).unwrap();

// Insert key/value pairs into the cache.
cache.insert("foo".to_string(), "foocontent".to_string());
cache.insert("bar".to_string(), "barcontent".to_string());

// Remove an entry from the cache.
cache.remove("bar");

// Retrieve a value from the cache, returning `None` or a reference to the value.
assert_eq!(cache.get("foo"), Some(&"foocontent".to_string()));

// Check if a key is in the cache.
assert_eq!(cache.contains_key("bar"), false);

// Get a mutable reference to a value in the cache.
if let Some(value) = cache.get_mut("foo") {
   *value = "newfoocontent".to_string();
}

// Return the number of cached values.
assert_eq!(cache.len(), 1);

// Return the capacity of the cache.
assert_eq!(cache.capacity(), 100000);

No runtime deps