| /rocksdb-6.9/env/ |
| D | io_posix.cc | 108 if (done < 0) { in PosixWrite() 114 left -= done; in PosixWrite() 115 src += done; in PosixWrite() 130 if (done < 0) { in PosixPositionedWrite() 136 left -= done; in PosixPositionedWrite() 137 offset += done; in PosixPositionedWrite() 138 src += done; in PosixPositionedWrite() 1405 if (done < 0) { in Read() 1420 ptr += done; in Read() 1421 offset += done; in Read() [all …]
|
| /rocksdb-6.9/port/win/ |
| D | win_logger.cc | 135 int done = vsnprintf(p, limit - p, format, backup_ap); in Logv() local 136 if (done > 0) { in Logv() 137 p += done; in Logv()
|
| /rocksdb-6.9/db/ |
| D | table_cache.cc | 362 bool done = false; in Get() local 372 done = GetFromRowCache(user_key, row_cache_key, row_cache_key.Size(), in Get() 374 if (!done) { in Get() 382 if (!done && s.ok()) { in Get() 412 done = true; in Get() 418 if (!done && s.ok() && row_cache_entry && !row_cache_entry->empty()) { in Get()
|
| D | memtable_list.cc | 132 bool done = memtable->Get(key, /*value*/ nullptr, /*timestamp*/ nullptr, s, in GetMergeOperands() local 135 if (done) { in GetMergeOperands() 161 bool done = memtable->Get(key, value, timestamp, s, merge_context, in GetFromList() local 175 if (done) { in GetFromList() 179 if (!done && !s->ok() && !s->IsMergeInProgress() && !s->IsNotFound()) { in GetFromList()
|
| /rocksdb-6.9/db/db_impl/ |
| D | db_impl_secondary.cc | 342 bool done = false; in GetImpl() local 346 done = true; in GetImpl() 353 done = true; in GetImpl() 357 if (!done && !s.ok() && !s.IsMergeInProgress()) { in GetImpl() 361 if (!done) { in GetImpl()
|
| D | db_impl_compaction_flush.cc | 1440 manual.done = false; in RunManualCompaction() 1505 while (!manual.done) { in RunManualCompaction() 1530 manual.done = true; in RunManualCompaction() 2521 manual_compaction->done = true; in BackgroundCompaction() 2546 m->done = true; in BackgroundCompaction() 2574 ((m->done || m->manual_end == nullptr) in BackgroundCompaction() 2910 m->done = true; in BackgroundCompaction() 2926 m->done = true; in BackgroundCompaction() 2928 if (!m->done) { in BackgroundCompaction() 3006 if ((cfd == (*it)->cfd) && (!((*it)->in_progress || (*it)->done))) { in HaveManualCompaction()
|
| D | db_impl.cc | 1606 bool done = false; in GetImpl() local 1618 done = true; in GetImpl() 1627 done = true; in GetImpl() 1637 done = true; in GetImpl() 1643 done = true; in GetImpl() 1647 if (!done && !s.ok() && !s.IsMergeInProgress()) { in GetImpl() 1652 if (!done) { in GetImpl() 1777 bool done = false; in MultiGet() local 1781 done = true; in MultiGet() 1786 done = true; in MultiGet() [all …]
|
| /rocksdb-6.9/util/ |
| D | compression.h | 809 bool done = false; variable 810 while (!done) { 814 done = true; 957 bool done = false; variable 958 while (!done) { 962 done = true;
|
| /rocksdb-6.9/docs/_posts/ |
| D | 2017-12-19-write-prepared-txn.markdown | 12 …he work, i.e., writing to memtable, is done at the commit phase. When the commit of multiple trans… 16 …eaders. To make the commit phase lightweight, the memtable write could be done at either `::Prepar…
|
| D | 2015-07-15-rocksdb-2015-h2-roadmap.markdown | 16 …ady getting pretty good performance results, but there is more work to be done. We need to focus o… 40 …1. Keep improving performance and stability, possibly reuse work done on MyRocks (workloads are pr…
|
| D | 2014-07-29-rocksdb-3-3-release.markdown | 21 …im storage space more effectively during the compaction process. This is done by compensating the…
|
| D | 2015-11-10-use-checkpoints-for-efficient-snapshots.markdown | 40 …nd these links are removed when the files are obsoleted. When the user is done with the snapshot, …
|
| D | 2016-04-26-rocksdb-4-5-1-released.markdown | 28 …ultiGet to read only the persited data and skip mem-tables if writes were done with disableWAL = t…
|
| D | 2015-01-16-migrating-from-leveldb-to-rocksdb-2.markdown | 10 …o proper options for RocksDB. As of release 3.9 this can be automatically done by using our option…
|
| D | 2014-05-14-lock.markdown | 33 …ion and increase the reference count for that (dereference the counter is done in an atomic decrea… 48 …ad exclusive mutexes within to protect writes to the LRU lists, which are done in both of read and…
|
| D | 2014-06-27-avoid-expensive-locks-in-get.markdown | 74 …rage. If it does not see SuperVersion::kSVInUse, that means a “sweep” was done and the reader thre…
|
| /rocksdb-6.9/ |
| D | CONTRIBUTING.md | 9 only need to do this once, so if you've done this for another Facebook
|
| D | WINDOWS_PORT.md | 18 All of the porting, testing and benchmarking was done on Windows Server 2012 R2 Datacenter 64-bit b… 37 All building and testing was done for 64-bit. We have not conducted any testing for 32-bit and earl…
|
| /rocksdb-6.9/db/compaction/ |
| D | compaction_picker_universal.cc | 571 bool done = false; in PickCompactionToReduceSortedRuns() local 658 done = true; in PickCompactionToReduceSortedRuns() 671 if (!done || candidate_count <= 1) { in PickCompactionToReduceSortedRuns()
|
| /rocksdb-6.9/table/block_based/ |
| D | block_based_table_reader.cc | 2166 bool done = false; in Get() local 2167 for (iiter->Seek(key); iiter->Valid() && !done; iiter->Next()) { in Get() 2227 done = true; in Get() 2243 done = true; in Get() 2277 if (done) { in Get() 2458 bool done = false; in MultiGet() local 2549 done = true; in MultiGet() 2582 if (done) { in MultiGet()
|
| /rocksdb-6.9/tools/advisor/test/input_files/ |
| D | LOG-1 | 19 …/25-14:30:27.289332) [db/memtable_list.cc:409] [default] Level-0 commit table #23: memtable #1 done
|
| D | LOG-0 | 19 …/25-14:30:27.289332) [db/memtable_list.cc:409] [default] Level-0 commit table #23: memtable #1 done
|
| /rocksdb-6.9/docs/_docs/ |
| D | getting-started.md | 51 When you are done with a database, just delete the database object. For example:
|
| /rocksdb-6.9/third-party/folly/folly/synchronization/test/ |
| D | DistributedMutexTest.cpp | 624 auto&& done = folly::Baton<>{}; in TEST() 629 done.wait(); in TEST() 636 done.post(); in TEST()
|
| /rocksdb-6.9/tools/rdb/ |
| D | API.md | 164 # are done atomically.
|