mirror of
https://github.com/trapexit/mergerfs.git
synced 2024-04-21 12:31:43 +00:00
policy_cache.hpp
This commit is contained in:
@@ -53,13 +53,16 @@ public:
|
||||
insert(std::string const &key_,
|
||||
std::string const &val_)
|
||||
{
|
||||
uint64_t hash;
|
||||
uint64_t hash;
|
||||
const char *val;
|
||||
|
||||
fmt::print("insert {}={}\n",
|
||||
key_,
|
||||
val_);
|
||||
|
||||
hash = wyhash(key_.c_str(),key_.size(),0xdeadbeef,_wyp);
|
||||
hash = wyhash(key_.c_str(),key_.size(),0xdeadbeef,_wyp);
|
||||
|
||||
|
||||
_cache.insert_or_assign(hash,val_);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user