Browse Source

policy_cache.hpp

getattr-cache
Antonio SJ Musumeci 10 months ago
parent
commit
4d631744b0
  1. 5
      src/policy_cache.hpp

5
src/policy_cache.hpp

@ -41,10 +41,13 @@ public:
insert(std::string const &key_,
std::string const &val_)
{
auto size = _cache.size();
_cache.visit_while([&](Map::value_type const &v_)
{
_cache.erase(v_.first);
return (_cache.size() > _max_size);
--size;
return (size > _max_size);
});
_cache.insert_or_assign(key_,val_);

Loading…
Cancel
Save