Home
last modified time | relevance | path

Searched refs:mode (Results 1 – 25 of 32) sorted by relevance

12

/rocksdb-6.9/db/
Dfilename_test.cc36 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()
Drange_del_aggregator.h284 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;
Drange_del_aggregator.cc243 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()
Drange_del_aggregator_bench.cc186 auto mode = ROCKSDB_NAMESPACE::RangeDelPositioningMode::kForwardTraversal; in main() local
241 range_del_agg.ShouldDelete(parsed_key, mode); in main()
Ddb_wal_test.cc1425 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/
Drate_limiter.h32 explicit RateLimiter(Mode mode = Mode::kWritesOnly) : mode_(mode) {} in mode_() argument
136 RateLimiter::Mode mode = RateLimiter::Mode::kWritesOnly,
/rocksdb-6.9/util/
Dfilter_bench.cc284 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()
Drate_limiter_test.cc39 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()
Drate_limiter.cc48 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()
Drate_limiter.h27 int32_t fairness, RateLimiter::Mode mode, Env* env,
/rocksdb-6.9/
DINSTALL.md4 `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
DRocksDBConfigVersion.cmake1 # This is a basic version file for the Config-mode of find_package().
DTARGETS94 # -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
DCMakeLists.txt18 # 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/
DDistributedMutex-inl.h901 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/
D2017-09-28-rocksdb-5-8-released.markdown15 …hoose to build with RTTI off. With make, release mode is by default built with -fno-rtti and debug…
D2015-07-23-dynamic-level.markdown14 …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…
D2014-09-12-cuckoo.markdown12 …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
D2014-05-14-lock.markdown49mode where table cache is bypassed in read queries. In this mode, all table handlers are cached an…
D2016-01-29-compaction_pri.markdown24 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…
D2016-07-26-rocksdb-4-8-released.markdown47 …* Add CompactionPri::kMinOverlappingRatio, a compaction picking mode friendly to write amplificati…
/rocksdb-6.9/table/block_based/
Dfilter_policy_internal.h82 explicit BloomFilterPolicy(double bits_per_key, Mode mode);
Dfilter_policy.cc459 BloomFilterPolicy::BloomFilterPolicy(double bits_per_key, Mode mode) in BloomFilterPolicy() argument
460 : mode_(mode), warned_(false) { in BloomFilterPolicy()
/rocksdb-6.9/java/crossbuild/
DVagrantfile1 # -*- mode: ruby -*-
/rocksdb-6.9/memtable/
Dmemtablerep_bench.cc162 KeyGenerator(Random64* rand, WriteMode mode, uint64_t num) in KeyGenerator() argument
163 : rand_(rand), mode_(mode), num_(num), next_(0) { in KeyGenerator()

12