Expand description
Provides a thread-safe, concurrent asynchronous (futures aware) cache implementation.
To use this module, enable a crate feature called “future”.
Structs§
- A thread-safe, futures-aware concurrent in-memory cache.
- Builds a
Cache
with various configuration knobs. - Iterator visiting all key-value pairs in a cache in arbitrary order.
- Provides advanced methods to select or insert an entry of the cache.
- Provides advanced methods to select or insert an entry of the cache.
Traits§
Type Aliases§
- The type of the unique ID to identify a predicate used by
Cache::invalidate_entries_if
method.