Expand description
This module provides cache stores with generator functions.
This means that if a entry is not found, it’s possible to automatically call the generator function to generate such key.
Traits:
GenCacheStore
: The default infallible trait.TryGenCacheStore
: The fallible flavour.
This also provides wrappers for normal stores to attach a generator to:
GenCacheStoreWrapper
: The default infallible wrapper.TryGenCacheStoreWrapper
: The fallible flavour.
§Examples
// This would obviously be something more complex, perhaps even handling long-awaited io
let very_heavy_computation = |&n: &usize, ()| n * 2;
// You wrap this around a normal store that you want
let store = MemoryStore::<usize, usize>::default();
// And combine them (here is where the magic happens)
let mut gen_store = GenCacheStoreWrapper::new(store, very_heavy_computation);
assert_eq!(gen_store.get(2), None);
assert_eq!(gen_store.get_or_new(2, ()), 4);
assert_eq!(gen_store.get(2), Some(4));
// We can eve pass additional arguments that we dont want to cache the keys by.
// This could be a one-time source that changes but is a valid to represent the cache key.
let very_heavy_computation = |&n: &usize, offset: usize| n * 2 + offset;
let store = MemoryStore::<usize, usize>::default();
let mut gen_store = GenCacheStoreWrapper::new(store, very_heavy_computation);
assert_eq!(gen_store.get(2), None); // Key hasn't been generated so far
assert_eq!(gen_store.get_or_new(2, 0), 4); // We generate such entry
assert_eq!(gen_store.get(2), Some(4)); // Now it exists
// As it exists, it won't generate a new value, even if the result would change
assert_eq!(gen_store.get_or_new(2, 1), 4);
assert_eq!(gen_store.gen_new(2, 1), 5); // Unless we explicitly tell it to
assert_eq!(gen_store.get(2), Some(5)); // And then it's saved
// WARNING: Extra arguments should NOT be important for the cache key, should only have
// information that you do NOT want to index in the underlying cache store. But you still want
// to pass to the generator for any reasons.
Macros§
- A macro to be used by [
ambassador::Delegate
] to delegateGenCacheStore
- A macro to be used by [
ambassador::Delegate
] to delegateTryGenCacheStore
Structs§
- Infallible generative cache store wrapper around a
CacheStore
and a generator function. - Infallible generative cache store wrapper around a
CacheStore
and a generator function.
Traits§
- Infallible generative cache store.
- Fallible generative cache store.