Home
last modified time | relevance | path

Searched refs:cache_id_ (Results 1 – 3 of 3) sorted by relevance

/rocksdb-6.9/utilities/persistent_cache/
Dblock_cache_tier_file.h61 : cache_id_(cache_id), off_(off), size_(size) {} in LogicalBlockAddress()
63 uint32_t cache_id_ = 0; member
95 : LRUElement<BlockCacheFile>(), cache_id_(cache_id) {} in BlockCacheFile()
102 cache_id_(cache_id) {} in BlockCacheFile()
122 return dir_ + "/" + std::to_string(cache_id_) + ".rc"; in Path()
125 uint32_t cacheid() const { return cache_id_; } in cacheid()
141 const uint32_t cache_id_; // Cache id for the file variable
Dblock_cache_tier_file.cc231 assert(lba.cache_id_ == cache_id_); in Read()
334 lba->cache_id_ = cache_id_; in Append()
455 Error(log_, "Error reading from buffer. cache=%d off=%d", cache_id_, in ReadBuffer()
Dblock_cache_tier.cc279 BlockCacheFile* const file = metadata_.Lookup(lba.cache_id_); in Lookup()