Home
last modified time | relevance | path

Searched refs:pcache (Results 1 – 4 of 4) sorted by relevance

/rocksdb-6.9/utilities/persistent_cache/
Dpersistent_cache_test.cc95 tcache->AddTier(pcache); in NewTieredCache()
327 std::shared_ptr<PersistentCacheTier> pcache; in RunTest() local
336 pcache = new_pcache(/*is_compressed=*/true); in RunTest()
337 table_options.persistent_cache = pcache; in RunTest()
344 pcache = new_pcache(/*is_compressed=*/true); in RunTest()
345 table_options.persistent_cache = pcache; in RunTest()
355 table_options.persistent_cache = pcache; in RunTest()
364 table_options.persistent_cache = pcache; in RunTest()
373 table_options.persistent_cache = pcache; in RunTest()
386 pcache->TEST_Flush(); in RunTest()
[all …]
Dpersistent_cache_bench.cc50 std::unique_ptr<PersistentCacheTier> pcache( in NewVolatileCache() local
52 return pcache; in NewVolatileCache()
79 auto pcache = in NewTieredCache() local
81 tcache->AddTier(pcache); in NewTieredCache()
Dblock_cache_tier.cc412 auto pcache = std::make_shared<BlockCacheTier>(opt); in NewPersistentCache() local
413 Status s = pcache->Open(); in NewPersistentCache()
419 *cache = pcache; in NewPersistentCache()
/rocksdb-6.9/tools/
Ddb_bench_tool.cc3856 auto pcache = std::make_shared<BlockCacheTier>(rc_cfg); in InitializeOptionsFromFlags() local
3857 block_based_options.persistent_cache = pcache; in InitializeOptionsFromFlags()
3858 rc_status = pcache->Open(); in InitializeOptionsFromFlags()