| /rocksdb-6.9/db/ |
| D | filename_test.cc | 36 char mode; in TEST_F() member 55 for (char mode : {kDifferentInfoLogDir, kDefautInfoLogDir, kNoCheckLogDir}) { in TEST_F() 57 InfoLogPrefix info_log_prefix(mode != kDefautInfoLogDir, "/rocksdb/dir"); in TEST_F() 58 if (cases[i].mode & mode) { in TEST_F() 60 if (mode == kNoCheckLogDir) { in TEST_F()
|
| D | range_del_aggregator.h | 284 bool ShouldDelete(const Slice& key, RangeDelPositioningMode mode) { in ShouldDelete() argument 289 return ShouldDelete(parsed, mode); in ShouldDelete() 292 RangeDelPositioningMode mode) = 0; 320 RangeDelPositioningMode mode); 369 RangeDelPositioningMode mode) final override { in ShouldDelete() argument 373 return ShouldDeleteImpl(parsed, mode); in ShouldDelete() 386 RangeDelPositioningMode mode); 403 RangeDelPositioningMode mode) override;
|
| D | range_del_aggregator.cc | 243 const ParsedInternalKey& parsed, RangeDelPositioningMode mode) { in ShouldDelete() argument 247 switch (mode) { in ShouldDelete() 326 RangeDelPositioningMode mode) { in ShouldDeleteImpl() argument 327 return rep_.ShouldDelete(parsed, mode); in ShouldDeleteImpl() 364 RangeDelPositioningMode mode) { in ShouldDelete() argument 369 return it->second.ShouldDelete(parsed, mode); in ShouldDelete()
|
| D | range_del_aggregator_bench.cc | 186 auto mode = ROCKSDB_NAMESPACE::RangeDelPositioningMode::kForwardTraversal; in main() local 241 range_del_agg.ShouldDelete(parsed_key, mode); in main()
|
| D | db_wal_test.cc | 1425 for (auto& mode : wal_recovery_mode_string_map) { in TEST_F() local 1426 options.wal_recovery_mode = mode.second; in TEST_F()
|
| /rocksdb-6.9/include/rocksdb/ |
| D | rate_limiter.h | 32 explicit RateLimiter(Mode mode = Mode::kWritesOnly) : mode_(mode) {} in mode_() argument 136 RateLimiter::Mode mode = RateLimiter::Mode::kWritesOnly,
|
| /rocksdb-6.9/util/ |
| D | filter_bench.cc | 284 TestMode mode); 515 TestMode mode) { in RandomQueryTest() argument 541 if (mode == kSingleFilter) { in RandomQueryTest() 544 } else if (mode == kFiftyOneFilter) { in RandomQueryTest() 549 } else if (mode == kEightyTwentyFilter) { in RandomQueryTest() 559 if (mode == kBatchPrepared || mode == kBatchUnprepared) { in RandomQueryTest() 599 if (mode == kBatchPrepared && !FLAGS_use_full_block_reader && in RandomQueryTest()
|
| D | rate_limiter_test.cc | 39 for (auto mode : {RateLimiter::Mode::kWritesOnly, in TEST_F() 43 10 /* fairness */, mode, Env::Default(), false /* auto_tuned */); in TEST_F() 46 if (mode == RateLimiter::Mode::kWritesOnly) { in TEST_F() 54 if (mode == RateLimiter::Mode::kAllIo) { in TEST_F()
|
| D | rate_limiter.cc | 48 int32_t fairness, RateLimiter::Mode mode, in GenericRateLimiter() argument 50 : RateLimiter(mode), in GenericRateLimiter() 330 RateLimiter::Mode mode /* = RateLimiter::Mode::kWritesOnly */, in NewGenericRateLimiter() argument 336 mode, Env::Default(), auto_tuned); in NewGenericRateLimiter()
|
| D | rate_limiter.h | 27 int32_t fairness, RateLimiter::Mode mode, Env* env,
|
| /rocksdb-6.9/ |
| D | INSTALL.md | 4 `make` or `make all`. That will compile RocksDB in debug mode, which is much slower 5 than release mode. 13 …ic_lib` will compile librocksdb.a, RocksDB static library. Compiles static library in release mode. 15 …d_lib` will compile librocksdb.so, RocksDB shared library. Compiles shared library in release mode. 17 …ke check` will compile and run all the unit tests. `make check` will compile RocksDB in debug mode. 20 …ill need to have gflags installed to run `make all`. This will compile RocksDB in debug mode. Don't
|
| D | RocksDBConfigVersion.cmake | 1 # This is a basic version file for the Config-mode of find_package().
|
| D | TARGETS | 94 # -DNDEBUG is added by default in opt mode in fbcode. But adding it twice 1567 # Do not build the tests in opt mode, since SyncPoint and other test code
|
| D | CMakeLists.txt | 18 # 4. Then build the project in debug mode (you may want to add /m[:<N>] flag to run msbuild in <N> … 23 # will be attempted but test only code does not build in Release mode. 25 # 5. And release mode (/m[:<N>] is also supported)
|
| /rocksdb-6.9/third-party/folly/folly/synchronization/ |
| D | DistributedMutex-inl.h | 901 bool spin(Waiter& waiter, std::uint32_t& sig, std::uint32_t mode) { 903 auto waitMode = (mode == kCombineUninitialized) ? kCombineWaiting : kWaiting; 1019 bool wait(Waiter* waiter, std::uint32_t mode, Waiter*& next, uint32_t& signal) { 1020 if (mode == kAboutToWait) { 1024 return spin(*waiter, signal, mode); 1279 auto mode = (value & 0xff); 1280 return (mode == kCombineWaiting) || (mode == kCombineUninitialized);
|
| /rocksdb-6.9/docs/_posts/ |
| D | 2017-09-28-rocksdb-5-8-released.markdown | 15 …hoose to build with RTTI off. With make, release mode is by default built with -fno-rtti and debug…
|
| D | 2015-07-23-dynamic-level.markdown | 14 …t but the main algorithm stayed the same, until we recently introduced the dynamic level size mode. 29 … dynamic level size target mode. You can enable it by setting options.level_compaction_dynamic_lev…
|
| D | 2014-09-12-cuckoo.markdown | 12 …ications which require very high point lookup rates (~4Mqps) in read only mode but do not use oper… 32 * The database is operated in read only mode
|
| D | 2014-05-14-lock.markdown | 49 …mode where table cache is bypassed in read queries. In this mode, all table handlers are cached an…
|
| D | 2016-01-29-compaction_pri.markdown | 24 We created a compaction priority **kOldestSmallestSeqFirst** for the same effect. With this mode, w… 30 The compaction priority **kOldestLargestSeqFirst** optimizes this use case. In this mode, we will p…
|
| D | 2016-07-26-rocksdb-4-8-released.markdown | 47 …* Add CompactionPri::kMinOverlappingRatio, a compaction picking mode friendly to write amplificati…
|
| /rocksdb-6.9/table/block_based/ |
| D | filter_policy_internal.h | 82 explicit BloomFilterPolicy(double bits_per_key, Mode mode);
|
| D | filter_policy.cc | 459 BloomFilterPolicy::BloomFilterPolicy(double bits_per_key, Mode mode) in BloomFilterPolicy() argument 460 : mode_(mode), warned_(false) { in BloomFilterPolicy()
|
| /rocksdb-6.9/java/crossbuild/ |
| D | Vagrantfile | 1 # -*- mode: ruby -*-
|
| /rocksdb-6.9/memtable/ |
| D | memtablerep_bench.cc | 162 KeyGenerator(Random64* rand, WriteMode mode, uint64_t num) in KeyGenerator() argument 163 : rand_(rand), mode_(mode), num_(num), next_(0) { in KeyGenerator()
|