Searched refs:row_cache (Results 1 – 16 of 16) sorted by relevance
| /rocksdb-6.9/db/ |
| D | table_cache.cc | 68 if (ioptions_.row_cache) { in TableCache() 71 PutVarint64(&row_cache_id_, ioptions_.row_cache->NewId()); in TableCache() 323 ioptions_.row_cache->Lookup(row_cache_key.GetUserKey())) { in GetFromRowCache() 331 static_cast<const std::string*>(ioptions_.row_cache->Value(row_handle)); in GetFromRowCache() 341 ioptions_.row_cache.get(), row_handle); in GetFromRowCache() 369 if (ioptions_.row_cache && !get_context->NeedToReadSequence()) { in Get() 422 ioptions_.row_cache->Insert(row_cache_key.GetUserKey(), row_ptr, charge, in Get() 453 ioptions_.row_cache && !first_key.get_context->NeedToReadSequence(); in MultiGet() 542 ioptions_.row_cache->Insert(row_cache_key.GetUserKey(), row_ptr, charge, in MultiGet()
|
| D | db_test.cc | 6311 options.row_cache = NewLRUCache(8192); in TEST_F() 6330 options.row_cache = NewLRUCache(8192); in TEST_F() 6338 reinterpret_cast<LRUCache*>(options.row_cache.get())->TEST_GetLRUSize(), in TEST_F() 6347 reinterpret_cast<LRUCache*>(options.row_cache.get())->TEST_GetLRUSize(), in TEST_F() 6352 reinterpret_cast<LRUCache*>(options.row_cache.get())->TEST_GetLRUSize(), in TEST_F()
|
| D | db_test_util.cc | 526 options.row_cache = NewLRUCache(1024 * 1024); in GetOptions()
|
| D | c.cc | 2770 opt->rep.row_cache = cache->rep; in rocksdb_options_set_row_cache()
|
| D | db_test2.cc | 4074 options.row_cache = NewLRUCache(8 * 8192); in TEST_F()
|
| /rocksdb-6.9/options/ |
| D | db_options.cc | 82 row_cache(options.row_cache), in ImmutableDBOptions() 215 if (row_cache) { in Dump() 219 row_cache->GetCapacity()); in Dump()
|
| D | cf_options.cc | 75 row_cache(db_options.row_cache), in ImmutableCFOptions()
|
| D | db_options.h | 74 std::shared_ptr<Cache> row_cache; member
|
| D | cf_options.h | 119 std::shared_ptr<Cache> row_cache; member
|
| D | options_settable_test.cc | 198 {offsetof(struct DBOptions, row_cache), sizeof(std::shared_ptr<Cache>)}, in TEST_F()
|
| D | options_helper.cc | 125 options.row_cache = immutable_db_options.row_cache; in BuildDBOptions()
|
| /rocksdb-6.9/include/rocksdb/ |
| D | options.h | 1012 std::shared_ptr<Cache> row_cache = nullptr; member
|
| /rocksdb-6.9/utilities/memory/ |
| D | memory_test.cc | 70 cache_set->insert(db->GetDBOptions().row_cache.get()); in GetCachePointers()
|
| /rocksdb-6.9/java/rocksjni/ |
| D | options.cc | 1870 auto* row_cache = in Java_org_rocksdb_Options_setRowCache() local 1873 opt->row_cache = *row_cache; in Java_org_rocksdb_Options_setRowCache() 6274 auto* row_cache = in Java_org_rocksdb_DBOptions_setRowCache() local 6277 opt->row_cache = *row_cache; in Java_org_rocksdb_DBOptions_setRowCache()
|
| /rocksdb-6.9/tools/ |
| D | db_bench_tool.cc | 4027 options.row_cache = in InitializeOptionsGeneral() 4030 options.row_cache = NewLRUCache(FLAGS_row_cache_size); in InitializeOptionsGeneral()
|
| /rocksdb-6.9/ |
| D | HISTORY.md | 203 * Improve performance of row_cache: make reads with newer snapshots than data in an SST file share … 888 * Added a cache for individual rows. See DBOptions::row_cache for more info.
|