Home
last modified time | relevance | path

Searched refs:called (Results 1 – 25 of 28) sorted by relevance

12

/rocksdb-6.9/db/
Ddb_wal_test.cc446 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 …]
Ddb_flush_test.cc220 int called = 0; in TEST_F() local
226 ++called; in TEST_F()
233 ASSERT_EQ(1, called); in TEST_F()
Ddb_test2.cc3705 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()
Dversion_set_test.cc1296 int called = 0; in TEST_P() local
1314 ++called; in TEST_P()
1322 ASSERT_EQ(1, called); in TEST_P()
/rocksdb-6.9/env/
Denv_test.cc122 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/
D2016-04-26-rocksdb-4-5-1-released.markdown53 …* CompactionFilter has new member function called IgnoreSnapshots which allows CompactionFilter to…
D2017-08-25-flushwal.markdown8 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…
D2017-02-07-rocksdb-5-1-2-released.markdown10 * Added EventListener::OnExternalFileIngested which will be called when IngestExternalFile() add a …
D2015-07-23-dynamic-level.markdown17called levels. Each level has a target size.  Usually target size of levels increases by the same …
D2014-07-29-rocksdb-3-3-release.markdown24 …* **TimeOut API to write**: Now WriteOptions have a variable called timeout_hint_us. With timeou…
D2014-04-07-rocksdb-2-8-release.markdown18 …* Added a new table format called PlainTable, which is optimized for RAM storage (ramfs or tmpfs).…
D2017-09-28-rocksdb-5-8-released.markdown17 * Allow merge operator to be called even with a single merge operand during compactions, by appropr…
D2017-05-26-rocksdb-5-4-5-released.markdown12 …he pinned resources that contain the value when it is destructed or when ::Reset() is called on it.
D2016-07-26-rocksdb-4-8-released.markdown17 …r::OnTableFileCreationStarted. EventListener::OnTableFileCreated will be called on failure case. U…
D2015-07-15-rocksdb-2015-h2-roadmap.markdown35 …ngoDB. The project of integrating MongoDB with RocksDB storage engine is called MongoRocks. It's a…
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.markdown12 …s to grab the current version, which is encapsulated in a data structure called [SuperVersion](htt…
D2015-10-27-getthreadlist.markdown10 We recently added a new API, called `GetThreadList()`, that exposes the RocksDB background thread a…
D2017-12-19-write-prepared-txn.markdown25 …rs the writes in a write batch object in memory. When 2PC `::Prepare` is called, it writes the in-…
D2014-03-27-how-to-backup-rocksdb.markdown115 …s restored back to the state before `BackupableDB::CreateNewBackup()` is called. One thing to note…
D2018-08-23-data-block-hash-index.markdown41 …ng of each restart interval, i.e. a restart point, is stored in an array called restart interval i…
/rocksdb-6.9/docs/
DTEMPLATE-INFORMATION.md13 …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/
Ddb_secondary_test.cc823 bool called = false; in TEST_F() local
833 called = true; in TEST_F()
859 ASSERT_TRUE(called); in TEST_F()
/rocksdb-6.9/
DHISTORY.md82 * 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/
Dfaq.md36 …Facebook newsfeed’s backend, it replaced another internal storage engine called Centrifuge and is …

12