LSST Applications g070148d5b3+33e5256705,g0d53e28543+25c8b88941,g0da5cf3356+2dd1178308,g1081da9e2a+62d12e78cb,g17e5ecfddb+7e422d6136,g1c76d35bf8+ede3a706f7,g295839609d+225697d880,g2e2c1a68ba+cc1f6f037e,g2ffcdf413f+853cd4dcde,g38293774b4+62d12e78cb,g3b44f30a73+d953f1ac34,g48ccf36440+885b902d19,g4b2f1765b6+7dedbde6d2,g5320a0a9f6+0c5d6105b6,g56b687f8c9+ede3a706f7,g5c4744a4d9+ef6ac23297,g5ffd174ac0+0c5d6105b6,g6075d09f38+66af417445,g667d525e37+2ced63db88,g670421136f+2ced63db88,g71f27ac40c+2ced63db88,g774830318a+463cbe8d1f,g7876bc68e5+1d137996f1,g7985c39107+62d12e78cb,g7fdac2220c+0fd8241c05,g96f01af41f+368e6903a7,g9ca82378b8+2ced63db88,g9d27549199+ef6ac23297,gabe93b2c52+e3573e3735,gb065e2a02a+3dfbe639da,gbc3249ced9+0c5d6105b6,gbec6a3398f+0c5d6105b6,gc9534b9d65+35b9f25267,gd01420fc67+0c5d6105b6,geee7ff78d7+a14128c129,gf63283c776+ede3a706f7,gfed783d017+0c5d6105b6,w.2022.47
LSST Data Management Base Package
|
Cache of most recently used values. More...
#include <Cache.h>
Public Member Functions | |
Cache (std::size_t maxElements=0) | |
Ctor. More... | |
Cache (Cache const &)=default | |
Cache (Cache &&)=default | |
Cache & | operator= (Cache const &)=default |
Cache & | operator= (Cache &&)=default |
~Cache ()=default | |
Dtor. More... | |
template<typename Generator > | |
Value | operator() (Key const &key, Generator func) |
Lookup or generate a value. More... | |
Value | operator[] (Key const &key) |
void | add (Key const &key, Value const &value) |
Add a value to the cache. More... | |
std::size_t | size () const |
Return the number of values in the cache. More... | |
std::vector< Key > | keys () const |
Return all keys in the cache, most recent first. More... | |
bool | contains (Key const &key) |
Does the cache contain the key? More... | |
std::optional< Value > | get (Key const &key) |
Return the cached value if it exists. More... | |
std::size_t | capacity () const |
Return the capacity of the cache. More... | |
void | reserve (std::size_t maxElements) |
Change the capacity of the cache. More... | |
void | flush () |
Empty the cache. More... | |
Cache (std::size_t maxElements=0) | |
Ctor. More... | |
Cache (Cache const &)=default | |
Cache (Cache &&)=default | |
Cache & | operator= (Cache const &)=default |
Cache & | operator= (Cache &&)=default |
~Cache ()=default | |
Dtor. More... | |
template<typename Generator > | |
Value | operator() (Key const &key, Generator func) |
Lookup or generate a value. More... | |
Value | operator[] (Key const &key) |
void | add (Key const &key, Value const &value) |
Add a value to the cache. More... | |
std::size_t | size () const |
Return the number of values in the cache. More... | |
std::vector< Key > | keys () const |
Return all keys in the cache, most recent first. More... | |
bool | contains (Key const &key) |
Does the cache contain the key? More... | |
std::optional< Value > | get (Key const &key) |
Return the cached value if it exists. More... | |
std::size_t | capacity () const |
Return the capacity of the cache. More... | |
void | reserve (std::size_t maxElements) |
Change the capacity of the cache. More... | |
void | flush () |
Empty the cache. More... | |
Cache of most recently used values.
This object stores the most recent maxElements
values, where maxElements
is set in the constructor. Objects (of type Value
) are stored by a key (of type Key
; hence the need to provide a KeyHash
and KeyPred
), and the class presents a dict-like interface. Objects may be added to (add
) and retrieved from (operator[]
) the cache. For ease of use, an interface (operator()
) is also provided that will check the cache for an existing key, and if the key is not present, generate it with a function provided by the user.
Value
and Key
must be copyable.Cache.h
) should generally only be included in source files, not other header files, because you probably don't want all of the boost::multi_index
includes in your header. We suggest you se the CacheFwd.h
file in your header instead, and hold the Cache
as a std::unique_ptr
.lsst/cpputils/python/Cache.h
.
|
inline |
Ctor.
The maximum number of elements may be zero (default), in which case the cache is permitted to grow without limit.
Definition at line 85 of file Cache.h.
|
default |
|
default |
|
default |
Dtor.
|
inline |
Ctor.
The maximum number of elements may be zero (default), in which case the cache is permitted to grow without limit.
Definition at line 85 of file Cache.h.
|
default |
|
default |
|
default |
Dtor.
void lsst::cpputils::Cache< Key, Value, KeyHash, KeyPred >::add | ( | Key const & | key, |
Value const & | value | ||
) |
Add a value to the cache.
If the key is already in the cache, the existing value will be promoted to the most recently used value.
Definition at line 318 of file Cache.h.
void lsst::cpputils::Cache< Key, Value, KeyHash, KeyPred >::add | ( | Key const & | key, |
Value const & | value | ||
) |
Add a value to the cache.
If the key is already in the cache, the existing value will be promoted to the most recently used value.
|
inline |
|
inline |
|
inline |
|
inline |
void lsst::cpputils::Cache< Key, Value, KeyHash, KeyPred >::flush |
Empty the cache.
Definition at line 336 of file Cache.h.
void lsst::cpputils::Cache< Key, Value, KeyHash, KeyPred >::flush | ( | ) |
Empty the cache.
|
inline |
Return the cached value if it exists.
If the key is in the cache, it will be promoted to the most recently used value.
|
inline |
Return the cached value if it exists.
If the key is in the cache, it will be promoted to the most recently used value.
std::vector< Key > lsst::cpputils::Cache< Key, Value, KeyHash, KeyPred >::keys |
Return all keys in the cache, most recent first.
Definition at line 326 of file Cache.h.
std::vector< Key > lsst::cpputils::Cache< Key, Value, KeyHash, KeyPred >::keys | ( | ) | const |
Return all keys in the cache, most recent first.
Value lsst::cpputils::Cache< Key, Value, KeyHash, KeyPred >::operator() | ( | Key const & | key, |
Generator | func | ||
) |
Lookup or generate a value.
If the key is in the cache, the corresponding value is returned. Otherwise, a value is generated by the provided function which is cached and returned. Thus, the (expensive) Generator
function only fires if the corresponding value is not already cached.
The Generator
function signature should be:
Value func(Key const& key);
Given the possibility of lambdas, we could have made the required function signature so that it took no arguments. However, it's possible the user has some function that produces a value when given a key, so chose to adopt that signature; any other signature would likely require use of a lambda always.
Value lsst::cpputils::Cache< Key, Value, KeyHash, KeyPred >::operator() | ( | Key const & | key, |
Generator | func | ||
) |
Lookup or generate a value.
If the key is in the cache, the corresponding value is returned. Otherwise, a value is generated by the provided function which is cached and returned. Thus, the (expensive) Generator
function only fires if the corresponding value is not already cached.
The Generator
function signature should be:
Value func(Key const& key);
Given the possibility of lambdas, we could have made the required function signature so that it took no arguments. However, it's possible the user has some function that produces a value when given a key, so chose to adopt that signature; any other signature would likely require use of a lambda always.
|
default |
|
default |
|
default |
|
default |
Value lsst::cpputils::Cache< Key, Value, KeyHash, KeyPred >::operator[] | ( | Key const & | key | ) |
Definition at line 308 of file Cache.h.
Value lsst::cpputils::Cache< Key, Value, KeyHash, KeyPred >::operator[] | ( | Key const & | key | ) |
|
inline |
|
inline |
|
inline |
|
inline |