Home
last modified time | relevance | path

Searched refs:low (Results 1 – 18 of 18) sorted by relevance

/rocksdb-6.9/db_stress_tool/
Ddb_stress_common.cc65 int64_t low = 1, mid, high = zipf_sum_size, zipf = 0; in GetOneHotKeyID() local
66 while (low <= high) { in GetOneHotKeyID()
67 mid = (low + high) / 2; in GetOneHotKeyID()
74 low = mid + 1; in GetOneHotKeyID()
/rocksdb-6.9/table/plain/
Dplain_table_reader.cc452 uint32_t low = 0; in GetOffset() local
461 while (high - low > 1) { in GetOffset()
462 uint32_t mid = (high + low) / 2; in GetOffset()
471 low = mid; in GetOffset()
489 uint32_t low_key_offset = GetFixed32Element(base_ptr, low); in GetOffset()
498 } else if (low + 1 < upper_bound) { in GetOffset()
501 *offset = GetFixed32Element(base_ptr, low + 1); in GetOffset()
/rocksdb-6.9/docs/_posts/
D2017-12-18-17-auto-tuned-rate-limiter.markdown10 … value that is low enough to prevent background I/O spikes, which can impact user-visible read/wri…
16 …I/O as the ratio of intervals where the rate limiter is drained. There are low and high watermarks…
D2017-06-26-17-level-based-changes.markdown10 … thus reads need to check them one-by-one. Users often wish to configure a low limit to improve th…
40 …in all of them. This lets us quickly reduce L0 file count to keep read-amp low while sustaining la…
D2017-07-25-rocksdb-5-6-1-released.markdown18 * Introduce WriteOptions.low_pri. If it is true, low priority writes will be throttled if the compa…
D2017-08-25-flushwal.markdown24 …p is formed performs the 2nd phase (Commit) in a serial manner. This makes low commit latency in t…
D2014-03-27-how-to-persist-in-memory-rocksdb-database.markdown10 …imizing RocksDB for in-memory workloads. With growing RAM sizes and strict low-latency requirement…
D2014-05-14-lock.markdown49 …e handler evictions should never happen. It is common for high-throughput, low-latency servers. We…
D2018-11-21-delete-range.markdown64 when the call finishes, the keys are guaranteed to be wiped from the DB; (3) low
/rocksdb-6.9/monitoring/
Dhistogram_test.cc23 uint64_t low, uint64_t high, uint64_t loop = 1) { in PopulateHistogram() argument
25 for (uint64_t i = low; i <= high; i++) { in PopulateHistogram()
/rocksdb-6.9/
DUSERS.md9 4. Laser -- Laser is a high query throughput, low (millisecond) latency, key-value storage service …
11 5. Stylus -- a low-level stream processing framework writtenin C++.[1]
83 [Dgraph](https://github.com/dgraph-io/dgraph) is an open-source, scalable, distributed, low latency…
DHISTORY.md427 …tio > 0, midpoint insertion strategy will be enabled to put low-pri items to the tail of low-pri l…
625 * Introduce WriteOptions.low_pri. If it is true, low priority writes will be throttled if the compa…
998 * When opening a DB, if options.max_background_compactions is larger than the existing low pri pool…
/rocksdb-6.9/docs/_data/
Dfeatures.yml8 …RocksDB is optimized for fast, low latency storage such as flash drives and high-speed disk drives…
/rocksdb-6.9/table/block_based/
Dfilter_policy.cc359 int low = 1; in CalculateNumEntry() local
361 for (; n >= low; n--) { in CalculateNumEntry()
/rocksdb-6.9/docs/_docs/
Dfaq.md26 RocksDB can be used by applications that need low latency database accesses. Possibilities include:
/rocksdb-6.9/db/
Ddb_with_timestamp_basic_test.cc129 std::string Timestamp(uint64_t low, uint64_t high) { in Timestamp() argument
131 PutFixed64(&ts, low); in Timestamp()
Ddb_test.cc1352 static bool Between(uint64_t val, uint64_t low, uint64_t high) { in Between() argument
1353 bool result = (val >= low) && (val <= high); in Between()
1356 (unsigned long long)(val), (unsigned long long)(low), in Between()
/rocksdb-6.9/table/
Dtable_test.cc1044 static bool Between(uint64_t val, uint64_t low, uint64_t high) { in Between() argument
1045 bool result = (val >= low) && (val <= high); in Between()
1049 (unsigned long long)(low), in Between()