Expand description
Provides thread-safe, concurrent cache implementations.
Structs§
- Cache
- A thread-safe concurrent synchronous in-memory cache.
- Cache
Builder - Builds a
Cache
orSegmentedCache
with various configuration knobs. - Iter
- Iterator visiting all key-value pairs in a cache in arbitrary order.
- Owned
KeyEntry Selector - Provides advanced methods to select or insert an entry of the cache.
- RefKey
Entry Selector - Provides advanced methods to select or insert an entry of the cache.
- Segmented
Cache - A thread-safe concurrent in-memory cache, with multiple internal segments.
Traits§
- Concurrent
Cache Ext - Provides extra methods that will be useful for testing.
Type Aliases§
- Predicate
Id - The type of the unique ID to identify a predicate used by
Cache::invalidate_entries_if
method.