Home
last modified time | relevance | path

Searched refs:cache_options_ (Results 1 – 2 of 2) sorted by relevance

/rocksdb-6.9/table/
Dblock_fetcher.cc70 if (cache_options_.persistent_cache && in TryGetUncompressBlockFromPersistentCache()
71 !cache_options_.persistent_cache->IsCompressed()) { in TryGetUncompressBlockFromPersistentCache()
73 cache_options_, handle_, contents_); in TryGetUncompressBlockFromPersistentCache()
108 if (cache_options_.persistent_cache && in TryGetCompressedBlockFromPersistentCache()
109 cache_options_.persistent_cache->IsCompressed()) { in TryGetCompressedBlockFromPersistentCache()
149 cache_options_.persistent_cache && in InsertCompressedBlockToPersistentCacheIfNeeded()
150 cache_options_.persistent_cache->IsCompressed()) { in InsertCompressedBlockToPersistentCacheIfNeeded()
152 PersistentCacheHelper::InsertRawPage(cache_options_, handle_, used_buf_, in InsertCompressedBlockToPersistentCacheIfNeeded()
159 cache_options_.persistent_cache && in InsertUncompressedBlockToPersistentCacheIfNeeded()
160 !cache_options_.persistent_cache->IsCompressed()) { in InsertUncompressedBlockToPersistentCacheIfNeeded()
[all …]
Dblock_fetcher.h60 cache_options_(cache_options), in file_()
82 const PersistentCacheOptions& cache_options_; variable