Home
last modified time | relevance | path

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

/rocksdb-6.9/cache/
Dlru_cache.cc40 LRUHandle* old = *ptr; in Insert() local
41 h->next_hash = (old == nullptr ? nullptr : old->next_hash); in Insert()
43 if (old == nullptr) { in Insert()
51 return old; in Insert()
125 assert(old->InCache() && !old->HasRefs()); in EraseUnRefEntries()
126 LRU_Remove(old); in EraseUnRefEntries()
127 table_.Remove(old->key(), old->hash); in EraseUnRefEntries()
240 assert(old->InCache() && !old->HasRefs()); in EvictFromLRU()
241 LRU_Remove(old); in EvictFromLRU()
242 table_.Remove(old->key(), old->hash); in EvictFromLRU()
[all …]
/rocksdb-6.9/util/
Dautovector.h83 auto old = *this;
85 return old;
96 auto old = *this;
98 return old;
Dautovector_test.cc184 auto old = pos++; in TEST_F() local
186 ASSERT_TRUE(!old->empty()); in TEST_F()
187 ASSERT_EQ(old_val, *old); in TEST_F()
/rocksdb-6.9/db/
Dmemtable_list.cc46 size_t* parent_memtable_list_memory_usage, MemTableListVersion* old) in MemTableListVersion() argument
48 old->max_write_buffer_number_to_maintain_), in MemTableListVersion()
50 old->max_write_buffer_size_to_maintain_), in MemTableListVersion()
52 if (old != nullptr) { in MemTableListVersion()
53 memlist_ = old->memlist_; in MemTableListVersion()
58 memlist_history_ = old->memlist_history_; in MemTableListVersion()
Dmemtable_list.h47 MemTableListVersion* old = nullptr);
/rocksdb-6.9/docs/_posts/
D2017-06-26-17-level-based-changes.markdown28 ![part-range-old.png](/static/images/compaction/part-range-old.png)
48old L0->L1 picking algorithm chose the largest L0 file for compaction. This didn't fit well with L…
D2014-03-27-how-to-backup-rocksdb.markdown75 You probably want to keep around only small number of backups. To delete old backups, just call `Pu…
77 …start writing more data to your database, newly created backup will delete old backups 3 and 4 and…
90 …destroy_old_data` to true, creating new `BackupableDB` will delete all the old backups in the back…
D2018-02-05-rocksdb-5-10-2-released.markdown12 … whenever possible. If PCLMULQDQ is not supported it will fall back to the old Fast_CRC32 algorith…
D2016-01-29-compaction_pri.markdown40old data to free up space. Picking files to compact may impact space efficiency. We don't yet have…
D2017-05-26-rocksdb-5-4-5-released.markdown13 * The old API that accepts std::string, although discouraged, is still supported.
D2016-07-26-rocksdb-4-8-released.markdown32 …use RocksDB option files. Or you can call Options.OldDefaults() to recover old defaults. DEFAULT_O…
D2018-11-21-delete-range.markdown217 the lookup key. Unlike the old design, once we find a tombstone, we no longer need to
224 scan (if possible), and query each encountered key in this structure as in the old design,
/rocksdb-6.9/tools/block_cache_analyzer/
Dblock_cache_pysim.py1378 old = self.t1.pop()
1379 self.b1.appendleft(old)
1382 old = self.t2.pop()
1383 self.b2.appendleft(old)
1385 old = self.t1.pop()
1386 self.b1.appendleft(old)
1387 self.used_size -= self.table[old].value_size
1388 del self.table[old]
/rocksdb-6.9/docs/_docs/
Dgetting-started.md14 …kur’s introductory talk](https://github.com/facebook/rocksdb/blob/gh-pages-old/intro.pdf?raw=true)…
Dfaq.md16 …kur’s introductory talk](https://github.com/facebook/rocksdb/blob/gh-pages-old/intro.pdf?raw=true)…
/rocksdb-6.9/
DHISTORY.md4 …PI now has correctly spelled transaction state name `COMMITTED`, while the old misspelled `COMMITE…
71old blob files are dropped once they are no longer needed. Note: we recommend enabling periodic co…
108 …te at 9.55 bits per key as the old one at 10 bits per key, and a lower false positive rate at 16 b…
137 …l be auto-enabled to 30 days, when the feature is supported. To revert the old behavior, you can e…
147 …ffered a crash, power failure, or I/O error, files could be left over from old backups that could …
190 * Replaces old Registra with ObjectRegistry to allow user to create custom object from string, also…
266 …roduced to control this behavior. Set it to kShortenSeparatorsAndSuccessor to get the old behavior.
376 * Fix a bug in WritePrepared txns where if the number of old snapshots goes beyond the snapshot cac…
462 …mpaction so that all files older than ttl go through the compaction process to get rid of old data.
564 … whenever possible. If PCLMULQDQ is not supported it will fall back to the old Fast_CRC32 algorith…
[all …]
/rocksdb-6.9/build_tools/
Dgnu_parallel850 my ($old,$new) = @_;
851 if($old ne $new) {
852 $Global::rpl{$new} = $Global::rpl{$old};
853 delete $Global::rpl{$old};