Simox
2.3.74.0
|
Wrapper for using a std::map
or std::unordered_map
as a data cache.
More...
Public Types | |
using | FetchFn = std::function< ValueT(KeyT key)> |
A fetch function which creates an item when its not already in the cache. More... | |
Public Member Functions | |
CacheMap () | |
Construct a CacheMap without default fetch function. More... | |
CacheMap (FetchFn fetchFn) | |
Construct a CacheMap with default fetch function. More... | |
void | setFetchFn (FetchFn fetchFn, bool clear=false) |
Set the fetch function, optionally clearing the cache (disabled by default). More... | |
ValueT & | get (const KeyT &key, std::function< ValueT(KeyT)> fetchFn) |
Get a value for the given key, using the given fetch function. More... | |
ValueT & | get (const KeyT &key) |
Get a value for the given key, using the stored fetch function. Make sure to pass set a fetch function via the constructor or setFetchFn() . More... | |
ValueT & | get (const KeyT &key) const |
Get a value for the given key (const version). More... | |
ValueT & | insert (const KeyT &key) |
Explicitly insert a value using the stored fetch function. More... | |
ValueT & | insert (const KeyT &key, const ValueT &value) |
Explicitly insert a value. More... | |
ValueT & | insert (const KeyT &key, std::function< ValueT(KeyT)> fetchFn) |
Explicitly insert a value using the fetch function. More... | |
void | clear () |
size_t | size () const |
bool | empty () const |
bool | contains (const KeyT &key) const |
auto | begin () |
auto | begin () const |
auto | end () |
auto | end () const |
auto | find (const KeyT &key) |
auto | find (const KeyT &key) const |
Wrapper for using a std::map
or std::unordered_map
as a data cache.
A CacheMap
uses a "fetch function" (FetchFn
) to retrieve values for keys that are not in the cache. It can be specified (among others) in the constructor, via setFetchFn()
or when accessing an item via get()
.
using simox::caching::CacheMap< KeyT, ValueT, MapT >::FetchFn = std::function<ValueT(KeyT key)> |
A fetch function which creates an item when its not already in the cache.
|
inline |
Construct a CacheMap without default fetch function.
Specify the fetch function when calling get()
or via setFetchFn()
.
|
inline |
Construct a CacheMap with default fetch function.
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
Get a value for the given key, using the given fetch function.
key | The key. |
fetchFn | The function to use when the key is not stored in the cache. |
|
inline |
Get a value for the given key, using the stored fetch function. Make sure to pass set a fetch function via the constructor or setFetchFn()
.
key | The key. |
<tt>simox::error::SimoxError</tt> | If no fetch function was specified. |
|
inline |
Get a value for the given key (const version).
This does not change the cache, therefore accessing a non-existing key will cause an exception.
key | The key. |
<tt>simox::error::SimoxError</tt> | If the key is not known. |
|
inline |
Explicitly insert a value using the stored fetch function.
|
inline |
Explicitly insert a value.
|
inline |
Explicitly insert a value using the fetch function.
|
inline |
Set the fetch function, optionally clearing the cache (disabled by default).
|
inline |