mirror of
https://github.com/trapexit/mergerfs.git
synced 2024-11-26 02:09:52 +08:00
policy_cache.hpp
This commit is contained in:
parent
892e12ed8d
commit
e071a07ab7
|
@ -42,6 +42,8 @@ public:
|
|||
insert(std::string const &key_,
|
||||
std::string &val_)
|
||||
{
|
||||
if(_cache.size() > _max_size)
|
||||
_cache.erase(_cache.begin());
|
||||
_cache.insert({key_,val_});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user