Struct Cache

Source
pub struct Cache<K, V, S = RandomState> { /* private fields */ }
Expand description

Highly performant, thread-safe cache with a focus on simplicity.

It implements the S3-FIFO eviction algorithm as specified in FIFO Queues are All You Need for Cache Eviction. The cache is divided into multiple shards to reduce contention during concurrent access. This crate does not use any unsafe code.

Wrap the cache in a std::sync::Arc to share it between threads. Both reads and writes only require shared references to the cache.

Implementations§

Source§

impl<K, V> Cache<K, V, RandomState>
where K: Clone + Eq + Hash, V: Clone,

Source

pub fn with_capacity(capacity: usize) -> Cache<K, V, RandomState>

Creates a new cache with at least the specified capacity.

The actual capacity may be slightly higher due to sharding and rounding.

Source§

impl<K, V, S> Cache<K, V, S>
where K: Clone + Eq + Hash, V: Clone, S: BuildHasher,

Source

pub fn insert(&self, key: K, value: V) -> Option<V>

Inserts a key-value pair into the cache.

If the cache did not have this key present, None is returned.

If the cache did have this key present, the value is updated, and the old value is returned.

Source

pub fn get<Q>(&self, key: &Q) -> Option<V>
where K: Borrow<Q>, Q: ?Sized + Hash + Eq,

Returns the value corresponding to the key.

This method clones the value when returning the item. Consider wrapping your values in std::sync::Arc if cloning is too expensive for you use-case.

Source§

impl<K, V, S> Cache<K, V, S>
where K: Clone + Eq + Hash, V: Clone, S: Clone + BuildHasher,

Source

pub fn with_capacity_and_hasher( capacity: usize, hash_builder: S, ) -> Cache<K, V, S>

Creates a new cache with the at least the specified capacity, using hasher to hash the keys.

The actual capacity may be slightly higher due to sharding and rounding.

Source§

impl<K, V, S> Cache<K, V, S>

Source

pub fn stats(&self) -> Stats

Returns cache performance statistics and resets the internal counters.

This method provides metrics about cache performance since the last call to stats(). After returning the statistics, all internal counters are reset to zero.

§Examples

Basic usage:

use plain_cache::Cache;

let cache = Cache::with_capacity(100);
cache.insert("key1", "value1");
cache.get("key1"); // hit
cache.get("key2"); // miss

let stats = cache.stats();
println!("Hits: {}, Misses: {}", stats.hit_count, stats.miss_count);

Calculating hit rate:

use plain_cache::Cache;

let cache = Cache::with_capacity(100);
cache.insert("key1", "value1");
cache.get("key1"); // hit
cache.get("key2"); // miss

let stats = cache.stats();
let total_requests = stats.hit_count + stats.miss_count;
if total_requests > 0 {
    let hit_rate = stats.hit_count as f64 / total_requests as f64;
    println!("Hit rate: {:.2}%", hit_rate * 100.0);
}
§Note

The counters are reset after each call to stats(), so each call returns statistics for the period since the previous call. This allows for periodic monitoring of cache performance.

Trait Implementations§

Source§

impl<K: Debug, V: Debug, S: Debug> Debug for Cache<K, V, S>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<K, V, S = RandomState> !Freeze for Cache<K, V, S>

§

impl<K, V, S = RandomState> !RefUnwindSafe for Cache<K, V, S>

§

impl<K, V, S> Send for Cache<K, V, S>
where S: Send, K: Send, V: Send,

§

impl<K, V, S> Sync for Cache<K, V, S>
where S: Sync + Send, K: Send + Sync, V: Send + Sync,

§

impl<K, V, S> Unpin for Cache<K, V, S>
where S: Unpin, K: Unpin, V: Unpin,

§

impl<K, V, S> UnwindSafe for Cache<K, V, S>
where S: UnwindSafe, K: UnwindSafe, V: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.