| /rocksdb-6.9/db/ |
| D | column_family_test.cc | 911 std::string one, two, three; in TEST_P() local 913 PutFixed64(&two, 2); in TEST_P() 1299 std::string one, two, three; in TEST_P() local 1301 PutFixed64(&two, 2); in TEST_P() 1304 ASSERT_OK(Put(0, "foo", two)); in TEST_P() 1309 ASSERT_OK(Put(1, "foo", two)); in TEST_P() 1314 ASSERT_OK(Put(2, "foo", two)); in TEST_P() 1346 two.num_levels = 4; in TEST_P() 1418 two.num_levels = 4; in TEST_P() 1518 two.num_levels = 4; in TEST_P() [all …]
|
| D | db_compaction_filter_test.cc | 537 std::string one, two, three, four; in TEST_F() local 539 PutFixed64(&two, 2); in TEST_F() 549 std::make_shared<ConditionalFilterFactory>(two); in TEST_F() 555 ASSERT_OK(db_->Put(WriteOptions(), "foo", two)); in TEST_F() 567 ASSERT_OK(db_->Put(WriteOptions(), "bar", two)); in TEST_F() 572 ASSERT_OK(db_->Merge(WriteOptions(), "bar", two)); in TEST_F() 576 ASSERT_EQ(two, two); in TEST_F() 581 ASSERT_OK(db_->Merge(WriteOptions(), "foobar", two)); in TEST_F() 592 ASSERT_OK(db_->Put(WriteOptions(), "barfoo", two)); in TEST_F() 594 ASSERT_OK(db_->Merge(WriteOptions(), "barfoo", two)); in TEST_F()
|
| D | write_batch_test.cc | 623 ColumnFamilyHandleImplDummy zero(0), two(2), three(3), eight(8); in TEST_F() local 625 batch.Put(&two, Slice("twofoo"), Slice("bar2")); in TEST_F() 628 batch.SingleDelete(&two, Slice("twofoo")); in TEST_F() 629 batch.DeleteRange(&two, Slice("3foo"), Slice("4foo")); in TEST_F() 652 ColumnFamilyHandleImplDummy zero(0), two(2), three(3), eight(8); in TEST_F() local 654 batch.Put(&two, Slice("twofoo"), Slice("bar2")); in TEST_F() 657 batch.SingleDelete(&two, Slice("twofoo")); in TEST_F() 682 iter.reset(batch.NewIterator(&two)); in TEST_F()
|
| D | db_wal_test.cc | 353 std::string one, two; in TEST_F() local 355 PutFixed64(&two, 2); in TEST_F() 371 ASSERT_EQ(two, Get("foo")); in TEST_F() 385 ASSERT_EQ(two, Get("foo")); in TEST_F() 402 ASSERT_EQ(two, Get("foo")); in TEST_F()
|
| /rocksdb-6.9/docs/_posts/ |
| D | 2014-05-14-lock.markdown | 36 We identified in two situations, we might do disk I/O inside mutex and we removed them: 41 …tors. For these reasons, we try to reduce object creations inside the mutex. Here are two examples: 48 …two locks are as intense as the DB mutex. Even if LRU cache is sharded into ShardedLRUCache, we ca… 61 We are using the latest 3.0 rocksdb; however, when two separate processes
|
| D | 2017-06-26-17-level-based-changes.markdown | 30 …two files are created after the compaction started. When the compaction is picked, the fourth L0 f… 32 …vely slow. As we saw, when keys are uniformly distributed, L0->L1 compacts two entire levels. Whil…
|
| D | 2014-06-27-rocksdb-3-2-release.markdown | 27 …* Add two paramters to NewHashLinkListRepFactory() for logging on too many entries in a hash bucke…
|
| D | 2016-03-07-rocksdb-options-file.markdown | 20 …sdb/utilities/options_util.h#L64-L77) that performs compatibility check on two sets of RocksDB opt…
|
| D | 2017-05-26-rocksdb-5-4-5-released.markdown | 19 …tition_filters when using kFullFilter. Currently the feature also requires two-level indexing to b…
|
| D | 2017-12-18-17-auto-tuned-rate-limiter.markdown | 26 The following graph summarizes the above two time series graphs in CDF form. In particular, notice …
|
| D | 2014-06-23-plaintable-a-new-file-format.markdown | 26 To meet our requirements, given that only hash prefix iterating is needed, we made two decisions:
|
| D | 2017-08-25-flushwal.markdown | 24 …er machinsims in place to provide reliability. MySQL for example uses 2PC (two-phase commit) to wr…
|
| D | 2014-03-27-how-to-persist-in-memory-rocksdb-database.markdown | 16 Every update to RocksDB is written to two places - one is an in-memory data structure called memtab…
|
| D | 2014-06-27-avoid-expensive-locks-in-get.markdown | 87 We are using the latest 3.0 rocksdb; however, when two separate processes
|
| D | 2015-07-23-dynamic-level.markdown | 14 Level-based compaction is the original LevelDB compaction style and one of the two major compaction…
|
| D | 2014-09-12-cuckoo.markdown | 61 We noticed the following two sub-optimal properties in original Cuckoo implementation:
|
| D | 2015-10-27-getthreadlist.markdown | 118 In the above output, we can see `GetThreadList()` reports the activity of two threads: one thread r…
|
| D | 2017-12-19-write-prepared-txn.markdown | 12 …a bottleneck for large transactions. The delay of the commit phase in 2PC (two-phase commit) also …
|
| D | 2016-01-29-compaction_pri.markdown | 43 … reason). If you want to further optimize your use case, you can try other two use cases if your u…
|
| /rocksdb-6.9/docs/ |
| D | _config.yml | 40 # Use the following to specify whether the previous two colours are 'light'
|
| /rocksdb-6.9/ |
| D | WINDOWS_PORT.md | 90 We decided not to implement these two features because the hosting program as a rule has these two …
|
| D | INSTALL.md | 169 …n building the project which uses rocksdb iOS library, make sure to define two important pre-proce…
|
| D | COPYING | 39 We protect your rights with two steps: (1) copyright the software, and 254 make exceptions for this. Our decision will be guided by the two goals
|
| D | HISTORY.md | 31 * Fix a bug that prevents opening a DB after two consecutive crash with TransactionDB, where the fi… 83 * Fixed two performance issues related to memtable history trimming. First, a new SuperVersion is n… 295 * Introduce two more stats levels, kExceptHistogramOrTimers and kExceptTimers. 367 * `NO_ITERATORS` is divided into two counters `NO_ITERATOR_CREATED` and `NO_ITERATOR_DELETE`. Both … 573 …the sequence of key-values representing the difference between DB state at two different sequence … 663 …tition_filters when using kFullFilter. Currently the feature also requires two-level indexing to b… 1035 * Statistics APIs now take uint32_t as type instead of Tickers. Also make two access functions getT… 1059 * Add two parameters to NewHashLinkListRepFactory() for logging on too many entries in a hash bucke…
|
| /rocksdb-6.9/utilities/transactions/ |
| D | transaction_test.cc | 2930 ColumnFamilyHandle *one, *two; in TEST_P() local 2936 s = db->CreateColumnFamily(cf_options, "TWO", &two); in TEST_P() 2946 s = txn1->Put(two, "X", "2"); in TEST_P() 2973 s = txn1->Put(two, "X", "222"); in TEST_P() 2982 s = db->Get(read_options, two, "X", &value); in TEST_P() 2990 s = db->DropColumnFamily(two); in TEST_P() 2997 delete two; in TEST_P()
|