Home
last modified time | relevance | path

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

/rocksdb-6.9/db/
Dtable_cache.cc361 std::string* row_cache_entry = nullptr; in Get() local
375 row_cache_entry = &row_cache_entry_buffer; in Get()
405 get_context->SetReplayLog(row_cache_entry); // nullptr if no cache. in Get()
418 if (!done && s.ok() && row_cache_entry && !row_cache_entry->empty()) { in Get()
420 row_cache_key.Size() + row_cache_entry->size() + sizeof(std::string); in Get()
421 void* row_ptr = new std::string(std::move(*row_cache_entry)); in Get()
528 std::string& row_cache_entry = row_cache_entries[row_idx++]; in MultiGet() local
538 if (s.ok() && !row_cache_entry.empty()) { in MultiGet()
540 row_cache_key.Size() + row_cache_entry.size() + sizeof(std::string); in MultiGet()
541 void* row_ptr = new std::string(std::move(row_cache_entry)); in MultiGet()