| /rocksdb-6.9/db_stress_tool/ |
| D | db_stress_common.cc | 65 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/ |
| D | plain_table_reader.cc | 452 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/ |
| D | 2017-12-18-17-auto-tuned-rate-limiter.markdown | 10 … 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…
|
| D | 2017-06-26-17-level-based-changes.markdown | 10 … 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…
|
| D | 2017-07-25-rocksdb-5-6-1-released.markdown | 18 * Introduce WriteOptions.low_pri. If it is true, low priority writes will be throttled if the compa…
|
| D | 2017-08-25-flushwal.markdown | 24 …p is formed performs the 2nd phase (Commit) in a serial manner. This makes low commit latency in t…
|
| D | 2014-03-27-how-to-persist-in-memory-rocksdb-database.markdown | 10 …imizing RocksDB for in-memory workloads. With growing RAM sizes and strict low-latency requirement…
|
| D | 2014-05-14-lock.markdown | 49 …e handler evictions should never happen. It is common for high-throughput, low-latency servers. We…
|
| D | 2018-11-21-delete-range.markdown | 64 when the call finishes, the keys are guaranteed to be wiped from the DB; (3) low
|
| /rocksdb-6.9/monitoring/ |
| D | histogram_test.cc | 23 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/ |
| D | USERS.md | 9 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…
|
| D | HISTORY.md | 427 …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/ |
| D | features.yml | 8 …RocksDB is optimized for fast, low latency storage such as flash drives and high-speed disk drives…
|
| /rocksdb-6.9/table/block_based/ |
| D | filter_policy.cc | 359 int low = 1; in CalculateNumEntry() local 361 for (; n >= low; n--) { in CalculateNumEntry()
|
| /rocksdb-6.9/docs/_docs/ |
| D | faq.md | 26 RocksDB can be used by applications that need low latency database accesses. Possibilities include:
|
| /rocksdb-6.9/db/ |
| D | db_with_timestamp_basic_test.cc | 129 std::string Timestamp(uint64_t low, uint64_t high) { in Timestamp() argument 131 PutFixed64(&ts, low); in Timestamp()
|
| D | db_test.cc | 1352 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/ |
| D | table_test.cc | 1044 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()
|