6#ifndef ALT_INTEGRATION_INCLUDE_VERIBLOCK_COMMAND_GROUP_CACHE_HPP_
7#define ALT_INTEGRATION_INCLUDE_VERIBLOCK_COMMAND_GROUP_CACHE_HPP_
12#include <unordered_map>
15#include "blockchain/command_group.hpp"
22struct CommandGroupCache {
24 using id_t = std::vector<uint8_t>;
25 CommandGroupCache(
const size_t maxsize = 1000);
27 bool put(
const id_t& cid,
const std::vector<CommandGroup>& cg);
29 bool get(
const id_t& cid, std::vector<CommandGroup>* out);
31 bool remove(
const id_t& cid);
37 std::list<id_t> _priority;
38 std::unordered_map<id_t, std::list<id_t>::iterator> _keys;
40 std::unordered_map<id_t, std::vector<CommandGroup>> _cache;
44 bool refer(
const id_t& cid);