policy_cache.hpp

This commit is contained in:
Antonio SJ Musumeci 2024-02-15 19:54:37 -06:00
parent 359b8a653e
commit 3082d60de7

View File

@ -41,8 +41,13 @@ public:
_cache.insert({key_,val_});
}
void erase(const char *fusepath);
void
erase(const char *key_)
{
_cache.erase(key_);
}
void cleanup(const int prob = 1);
void clear(void);