Struct cached::stores::TimedCache [] [src]

pub struct TimedCache<K, V> { /* fields omitted */ }

Cache store bound by time - Values are timestamped when inserted and are expired on attempted retrieval.

Methods

impl<K: Hash + Eq, V> TimedCache<K, V>
[src]

[src]

Creates a new TimedCache with a specified lifespan

[src]

Creates a new TimedCache with a specified lifespan and cache-store with the specified pre-allocated capacity

Trait Implementations

impl<K: Hash + Eq, V> Cached<K, V> for TimedCache<K, V>
[src]

[src]

Attempt to retrieve a cached value

[src]

Insert a key, value pair

[src]

Return the current cache size (number of elements)

[src]

Return the number of times a cached value was successfully retrieved

[src]

Return the number of times a cached value was unable to be retrieved

[src]

Return the lifespan of cached values (time to eviction)

[src]

Return the cache capacity