| /rocksdb-6.9/table/ |
| D | multiget_context.h | 141 class Range { 156 Iterator(const Range* range, size_t idx) in Iterator() 198 friend Range; 199 const Range* range_; 204 Range(const Range& mget_range, in Range() function 213 Range() = default; 253 Range(MultiGetContext* ctx, size_t num_keys) in Range() function 258 Range GetMultiGetRange() { return Range(this, num_keys_); } in GetMultiGetRange()
|
| D | table_reader.h | 104 const MultiGetContext::Range* mget_range,
|
| /rocksdb-6.9/db/ |
| D | db_table_properties_test.cc | 52 std::vector<Range> ranges, std::size_t* num_properties = nullptr, 94 std::vector<Range> ranges, std::size_t* num_properties, in TestGetPropertiesOfTablesInRange() 176 {Range(test::RandomKey(&rnd, 5, test::RandomKeyType::SMALLEST), in TEST_F() 183 {Range(test::RandomKey(&rnd, 5, test::RandomKeyType::LARGEST), in TEST_F() 191 {Range(test::RandomKey(&rnd, 5, test::RandomKeyType::MIDDLE), in TEST_F() 216 std::vector<Range> ranges; in TEST_F() 219 ranges.push_back(Range(*it, *(it + 1))); in TEST_F()
|
| D | db_test.cc | 1379 Range r(start, end); in TEST_F() 1392 r = Range(start, end); in TEST_F() 1402 r = Range(start, end); in TEST_F() 1408 r = Range(start, end); in TEST_F() 1432 r = Range(start, end); in TEST_F() 1438 r = Range(start, end); in TEST_F() 1444 r = Range(start, end); in TEST_F() 1450 r = Range(start, end); in TEST_F() 1466 r = Range(start, end); in TEST_F() 1482 r = Range(start, end); in TEST_F() [all …]
|
| D | table_cache.h | 116 const MultiGetContext::Range* mget_range,
|
| D | version_set.h | 566 using MultiGetRange = MultiGetContext::Range; 654 Status GetPropertiesOfTablesInRange(const Range* range, std::size_t n,
|
| D | memtable.h | 68 using MultiGetRange = MultiGetContext::Range;
|
| D | column_family.h | 405 Status RangesOverlapWithMemtables(const autovector<Range>& ranges,
|
| D | db_merge_operator_test.cc | 594 ::testing::Range(static_cast<int>(DBTestBase::kDefault),
|
| D | external_sst_file_ingestion_job.cc | 184 autovector<Range> ranges; in NeedsFlush()
|
| D | c.cc | 96 using ROCKSDB_NAMESPACE::Range; 1157 Range* ranges = new Range[num_ranges]; in rocksdb_approximate_sizes() 1173 Range* ranges = new Range[num_ranges]; in rocksdb_approximate_sizes_cf()
|
| D | table_cache.cc | 437 const MultiGetContext::Range* mget_range, in MultiGet()
|
| /rocksdb-6.9/include/rocksdb/ |
| D | db.h | 98 struct Range { struct 102 Range() {} in Range() argument 103 Range(const Slice& s, const Slice& l) : start(s), limit(l) {} in Range() argument 1003 const Range* range, int n, 1010 const Range* range, int n, uint64_t* sizes, 1019 virtual void GetApproximateSizes(const Range* range, int n, uint64_t* sizes, 1027 const Range& range, 1030 virtual void GetApproximateMemTableStats(const Range& range, in GetApproximateMemTableStats() 1038 const Range* range, int n, uint64_t* sizes, bool include_memtable) { in GetApproximateSizes() 1046 ColumnFamilyHandle* column_family, const Range* range, int n, in GetApproximateSizes() [all …]
|
| /rocksdb-6.9/java/src/main/java/org/rocksdb/ |
| D | Range.java | 11 public class Range { class 15 public Range(final Slice start, final Slice limit) { in Range() method in Range
|
| D | RocksDB.java | 2979 final List<Range> ranges, in getApproximateSizes() 3011 public long[] getApproximateSizes(final List<Range> ranges, in getApproximateSizes() 3039 final Range range) { in getApproximateMemTableStats() 3057 final Range range) { in getApproximateMemTableStats() 4036 final List<Range> ranges) throws RocksDBException { in getPropertiesOfTablesInRange() 4052 final List<Range> ranges) throws RocksDBException { in getPropertiesOfTablesInRange() 4066 public Range suggestCompactRange( in suggestCompactRange() 4071 return new Range(new Slice(rangeSliceHandles[0]), in suggestCompactRange() 4082 public Range suggestCompactRange() in suggestCompactRange() 4205 private static long[] toRangeSliceHandles(final List<Range> ranges) { in toRangeSliceHandles() [all …]
|
| /rocksdb-6.9/include/rocksdb/utilities/ |
| D | stackable_db.h | 229 const Range* r, int n, in GetApproximateSizes() 236 const Range& range, in GetApproximateMemTableStats() 428 ColumnFamilyHandle* column_family, const Range* range, std::size_t n, in GetPropertiesOfTablesInRange()
|
| /rocksdb-6.9/java/src/test/java/org/rocksdb/ |
| D | RocksDBTest.java | 1188 new Range(new Slice(key1), new Slice(key2)), in getApproximateSizes() 1189 new Range(new Slice(key2), new Slice(key3)) in getApproximateSizes() 1215 new Range(new Slice(key1), new Slice(key3))); in getApproximateMemTableStats() 1530 final Range range = new Range( in getPropertiesOfTablesInRange() 1560 final Range range = db.suggestCompactRange(cfHandles.get(0)); in suggestCompactRange()
|
| /rocksdb-6.9/table/block_based/ |
| D | filter_block.h | 42 using MultiGetRange = MultiGetContext::Range;
|
| D | block_based_table_reader.h | 130 const MultiGetContext::Range* mget_range,
|
| /rocksdb-6.9/docs/_posts/ |
| D | 2018-11-21-delete-range.markdown | 248 Point lookup benchmarks read 100000 keys from a database using `readwhilewriting`. Range scan bench… 261 ### Short Range Scans 268 ### Long Range scans
|
| D | 2018-08-23-data-block-hash-index.markdown | 89 Data block hash index only supports point lookup. We do not support range lookup. Range lookup requ…
|
| /rocksdb-6.9/java/rocksjni/ |
| D | rocksjni.cc | 2278 auto ranges = std::unique_ptr<ROCKSDB_NAMESPACE::Range[]>( in Java_org_rocksdb_RocksDB_getApproximateSizes() 2279 new ROCKSDB_NAMESPACE::Range[range_count]); in Java_org_rocksdb_RocksDB_getApproximateSizes() 2283 ranges.get()[i] = ROCKSDB_NAMESPACE::Range(*start, *limit); in Java_org_rocksdb_RocksDB_getApproximateSizes() 2336 const ROCKSDB_NAMESPACE::Range range(*start, *limit); in Java_org_rocksdb_RocksDB_getApproximateMemTableStats() 3180 auto ranges = std::unique_ptr<ROCKSDB_NAMESPACE::Range[]>( in Java_org_rocksdb_RocksDB_getPropertiesOfTablesInRange() 3181 new ROCKSDB_NAMESPACE::Range[ranges_len]); in Java_org_rocksdb_RocksDB_getPropertiesOfTablesInRange() 3187 ranges[j++] = ROCKSDB_NAMESPACE::Range(*start, *limit); in Java_org_rocksdb_RocksDB_getPropertiesOfTablesInRange()
|
| /rocksdb-6.9/db/db_impl/ |
| D | db_impl.h | 281 const Range* range, int n, 285 const Range& range, 445 ColumnFamilyHandle* column_family, const Range* range, std::size_t n,
|
| /rocksdb-6.9/ |
| D | WINDOWS_PORT.md | 202 #### Test 2. Prefix Range Query
|
| /rocksdb-6.9/db/compaction/ |
| D | compaction_job_stats_test.cc | 303 Range r(start, limit); in Size()
|