veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
|
time-based LFRU cache. More...
if all cache items are newer than TimeWindow min, evict less frequently used element. otherwise, evict oldest item, with lowest frequency.
has O(Size) complexity, thus works best for caches with small number of keys
Definition at line 29 of file small_lfru_cache.hpp.
#include <small_lfru_cache.hpp>
Public Member Functions | |
std::shared_ptr< Value > | getOrDefault (Key key, std::function< std::shared_ptr< Value >()> factory) |
void | clear () |
void | insert (Key key, std::shared_ptr< Value > value) |
bool | get (const Key &key, std::shared_ptr< Value > &out) |
|
inline |
Definition at line 55 of file small_lfru_cache.hpp.
|
inline |
Definition at line 108 of file small_lfru_cache.hpp.
|
inline |
Definition at line 44 of file small_lfru_cache.hpp.
|
inline |
Definition at line 62 of file small_lfru_cache.hpp.