| /rocksdb-6.9/db/ |
| D | db_wal_test.cc | 446 std::atomic<int> called(0); in TEST_F() local 452 called.fetch_add(1); in TEST_F() 460 ASSERT_EQ(2, called.load()); in TEST_F() 465 called.store(0); in TEST_F() 471 called.fetch_add(1); in TEST_F() 479 ASSERT_EQ(2, called.load()); in TEST_F() 485 called.store(0); in TEST_F() 491 called.fetch_add(1); in TEST_F() 499 ASSERT_EQ(2, called.load()); in TEST_F() 506 called.store(0); in TEST_F() [all …]
|
| D | db_flush_test.cc | 220 int called = 0; in TEST_F() local 226 ++called; in TEST_F() 233 ASSERT_EQ(1, called); in TEST_F()
|
| D | db_test2.cc | 3705 std::atomic<bool> called(false); in TEST_F() local 3713 called = true; in TEST_F() 3735 ASSERT_TRUE(called.load()); in TEST_F() 3736 called = false; in TEST_F() 3751 called = true; in TEST_F() 3771 ASSERT_TRUE(called.load()); in TEST_F() 3772 called = false; in TEST_F() 3780 ASSERT_TRUE(called.load()); in TEST_F()
|
| D | version_set_test.cc | 1296 int called = 0; in TEST_P() local 1314 ++called; in TEST_P() 1322 ASSERT_EQ(1, called); in TEST_P()
|
| /rocksdb-6.9/env/ |
| D | env_test.cc | 122 std::atomic<bool> called(false); in TEST_F() local 124 env_->Schedule(&SetBool, &called, static_cast<Env::Priority>(pri)); in TEST_F() 126 ASSERT_TRUE(called.load()); in TEST_F() 131 std::atomic<bool> called(false); in TEST_F() local 132 env_->StartThread(&SetBool, &called); in TEST_F() 134 ASSERT_TRUE(called.load()); in TEST_F() 289 std::atomic<bool> called(false); in TEST_P() local 302 ASSERT_EQ(0, env_->UnSchedule(&called, Env::Priority::LOW)); in TEST_P() 311 env_->Schedule(&SetBool, &called); in TEST_P() 313 if (called.load()) { in TEST_P() [all …]
|
| /rocksdb-6.9/docs/_posts/ |
| D | 2016-04-26-rocksdb-4-5-1-released.markdown | 53 …* CompactionFilter has new member function called IgnoreSnapshots which allows CompactionFilter to…
|
| D | 2017-08-25-flushwal.markdown | 8 When `DB::Put` is called, the data is written to both memtable (to be flushed to SST files later) a… 20 …e, the WAL buffer is flushed when it is either full or `DB::FlushWAL` is called by the user. The A…
|
| D | 2017-02-07-rocksdb-5-1-2-released.markdown | 10 * Added EventListener::OnExternalFileIngested which will be called when IngestExternalFile() add a …
|
| D | 2015-07-23-dynamic-level.markdown | 17 …called levels. Each level has a target size. Usually target size of levels increases by the same …
|
| D | 2014-07-29-rocksdb-3-3-release.markdown | 24 …* **TimeOut API to write**: Now WriteOptions have a variable called timeout_hint_us. With timeou…
|
| D | 2014-04-07-rocksdb-2-8-release.markdown | 18 …* Added a new table format called PlainTable, which is optimized for RAM storage (ramfs or tmpfs).…
|
| D | 2017-09-28-rocksdb-5-8-released.markdown | 17 * Allow merge operator to be called even with a single merge operand during compactions, by appropr…
|
| D | 2017-05-26-rocksdb-5-4-5-released.markdown | 12 …he pinned resources that contain the value when it is destructed or when ::Reset() is called on it.
|
| D | 2016-07-26-rocksdb-4-8-released.markdown | 17 …r::OnTableFileCreationStarted. EventListener::OnTableFileCreated will be called on failure case. U…
|
| D | 2015-07-15-rocksdb-2015-h2-roadmap.markdown | 35 …ngoDB. The project of integrating MongoDB with RocksDB storage engine is called MongoRocks. It's a…
|
| 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 | 12 …s to grab the current version, which is encapsulated in a data structure called [SuperVersion](htt…
|
| D | 2015-10-27-getthreadlist.markdown | 10 We recently added a new API, called `GetThreadList()`, that exposes the RocksDB background thread a…
|
| D | 2017-12-19-write-prepared-txn.markdown | 25 …rs the writes in a write batch object in memory. When 2PC `::Prepare` is called, it writes the in-…
|
| D | 2014-03-27-how-to-backup-rocksdb.markdown | 115 …s restored back to the state before `BackupableDB::CreateNewBackup()` is called. One thing to note…
|
| D | 2018-08-23-data-block-hash-index.markdown | 41 …ng of each restart interval, i.e. a restart point, is stored in an array called restart interval i…
|
| /rocksdb-6.9/docs/ |
| D | TEMPLATE-INFORMATION.md | 13 …te tags (called Liquid) in there too. Checkout this folder's index.md for an example of one common…
|
| /rocksdb-6.9/db/db_impl/ |
| D | db_secondary_test.cc | 823 bool called = false; in TEST_F() local 833 called = true; in TEST_F() 859 ASSERT_TRUE(called); in TEST_F()
|
| /rocksdb-6.9/ |
| D | HISTORY.md | 82 * Fix a bug in WriteBatchWithIndex::MultiGetFromBatchAndDB, which is called by Transaction::MultiGe… 98 …Prev could return invalid for an existing prefix. ::SeekForPrev might be called by the user, or in… 256 …tombstones to reappear. Note `Put`s may exist even if the user only ever called `Merge()` due to a… 383 * `OnTableFileCreated` will now be called for empty files generated during compaction. In that case… 525 * Add a new histogram stat called rocksdb.db.flush.micros for memtable flush. 589 * Allow merge operator to be called even with a single merge operand during compactions, by appropr… 655 …he pinned resources that contain the value when it is destructed or when ::Reset() is called on it. 695 * Added EventListener::OnExternalFileIngested which will be called when IngestExternalFile() add a … 777 * Added EventListener::OnTableFileCreationStarted. EventListener::OnTableFileCreated will be called… 821 * CompactionFilter has new member function called IgnoreSnapshots which allows CompactionFilter to … [all …]
|
| /rocksdb-6.9/docs/_docs/ |
| D | faq.md | 36 …Facebook newsfeed’s backend, it replaced another internal storage engine called Centrifuge and is …
|