6#ifndef VERIBLOCK_POP_CPP_SMALL_LRU_CACHE_HPP
7#define VERIBLOCK_POP_CPP_SMALL_LRU_CACHE_HPP
13#include <veriblock/pop/time.hpp>
24template <
typename Key,
27 size_t TimeWindow = 10 * 60,
28 typename =
typename std::enable_if<(Size <= 50)>::type>
33 size_t lastAccessed = 0;
35 std::shared_ptr<Value> value =
nullptr;
44 std::shared_ptr<Value> getOrDefault(
45 Key key, std::function<std::shared_ptr<Value>()> factory) {
46 std::shared_ptr<Value> value;
47 if (!get(key, value)) {
57 for (
auto& i : container_) {
62 void insert(Key key, std::shared_ptr<Value> value) {
67 auto& it = container_[size_++];
70 it.value = std::move(value);
71 it.lastAccessed = current;
76 auto begin = container_.begin();
77 auto end = container_.end();
81 auto leastRecent = begin;
82 for (
auto it = begin; it != end; ++it) {
83 if (it->frequency < min->frequency) {
87 if (it->lastAccessed < leastRecent->lastAccessed ||
88 (it->lastAccessed == leastRecent->lastAccessed &&
89 it->frequency < leastRecent->frequency)) {
96 if (leastRecent->lastAccessed <= current - TimeWindow) {
103 evict->frequency = 0;
104 evict->value = std::move(value);
105 evict->lastAccessed = current;
108 bool get(
const Key& key, std::shared_ptr<Value>& out) {
110 auto begin = container_.begin();
111 auto end = container_.begin() + size_;
112 auto it = std::find_if(
113 begin, end, [&key](
const Item& i) {
return i.key == key; });
129 std::array<Item, Size> container_;
uint32_t currentTimestamp4()
Get current time as 4 bytes. If mock time is set, returns mock time.