Home
last modified time | relevance | path

Searched refs:two (Results 1 – 25 of 26) sorted by relevance

12

/rocksdb-6.9/db/
Dcolumn_family_test.cc911 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 …]
Ddb_compaction_filter_test.cc537 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()
Dwrite_batch_test.cc623 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()
Ddb_wal_test.cc353 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/
D2014-05-14-lock.markdown36 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:
48two 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
D2017-06-26-17-level-based-changes.markdown30two 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…
D2014-06-27-rocksdb-3-2-release.markdown27 …* Add two paramters to NewHashLinkListRepFactory() for logging on too many entries in a hash bucke…
D2016-03-07-rocksdb-options-file.markdown20 …sdb/utilities/options_util.h#L64-L77) that performs compatibility check on two sets of RocksDB opt…
D2017-05-26-rocksdb-5-4-5-released.markdown19 …tition_filters when using kFullFilter. Currently the feature also requires two-level indexing to b…
D2017-12-18-17-auto-tuned-rate-limiter.markdown26 The following graph summarizes the above two time series graphs in CDF form. In particular, notice …
D2014-06-23-plaintable-a-new-file-format.markdown26 To meet our requirements, given that only hash prefix iterating is needed, we made two decisions:
D2017-08-25-flushwal.markdown24 …er machinsims in place to provide reliability. MySQL for example uses 2PC (two-phase commit) to wr…
D2014-03-27-how-to-persist-in-memory-rocksdb-database.markdown16 Every update to RocksDB is written to two places - one is an in-memory data structure called memtab…
D2014-06-27-avoid-expensive-locks-in-get.markdown87 We are using the latest 3.0 rocksdb; however, when two separate processes
D2015-07-23-dynamic-level.markdown14 Level-based compaction is the original LevelDB compaction style and one of the two major compaction…
D2014-09-12-cuckoo.markdown61 We noticed the following two sub-optimal properties in original Cuckoo implementation:
D2015-10-27-getthreadlist.markdown118 In the above output, we can see `GetThreadList()` reports the activity of two threads: one thread r…
D2017-12-19-write-prepared-txn.markdown12 …a bottleneck for large transactions. The delay of the commit phase in 2PC (two-phase commit) also …
D2016-01-29-compaction_pri.markdown43 … 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.yml40 # Use the following to specify whether the previous two colours are 'light'
/rocksdb-6.9/
DWINDOWS_PORT.md90 We decided not to implement these two features because the hosting program as a rule has these two
DINSTALL.md169 …n building the project which uses rocksdb iOS library, make sure to define two important pre-proce…
DCOPYING39 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
DHISTORY.md31 * 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/
Dtransaction_test.cc2930 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()

12