Browse Source

policy_cache.hpp

getattr-cache
Antonio SJ Musumeci 9 months ago
parent
commit
3082d60de7
  1. 7
      src/policy_cache.hpp

7
src/policy_cache.hpp

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

Loading…
Cancel
Save