Home
last modified time | relevance | path

Searched refs:Range (Results 1 – 25 of 37) sorted by relevance

12

/rocksdb-6.9/table/
Dmultiget_context.h141 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()
Dtable_reader.h104 const MultiGetContext::Range* mget_range,
/rocksdb-6.9/db/
Ddb_table_properties_test.cc52 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()
Ddb_test.cc1379 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 …]
Dtable_cache.h116 const MultiGetContext::Range* mget_range,
Dversion_set.h566 using MultiGetRange = MultiGetContext::Range;
654 Status GetPropertiesOfTablesInRange(const Range* range, std::size_t n,
Dmemtable.h68 using MultiGetRange = MultiGetContext::Range;
Dcolumn_family.h405 Status RangesOverlapWithMemtables(const autovector<Range>& ranges,
Ddb_merge_operator_test.cc594 ::testing::Range(static_cast<int>(DBTestBase::kDefault),
Dexternal_sst_file_ingestion_job.cc184 autovector<Range> ranges; in NeedsFlush()
Dc.cc96 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()
Dtable_cache.cc437 const MultiGetContext::Range* mget_range, in MultiGet()
/rocksdb-6.9/include/rocksdb/
Ddb.h98 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/
DRange.java11 public class Range { class
15 public Range(final Slice start, final Slice limit) { in Range() method in Range
DRocksDB.java2979 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/
Dstackable_db.h229 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/
DRocksDBTest.java1188 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/
Dfilter_block.h42 using MultiGetRange = MultiGetContext::Range;
Dblock_based_table_reader.h130 const MultiGetContext::Range* mget_range,
/rocksdb-6.9/docs/_posts/
D2018-11-21-delete-range.markdown248 Point lookup benchmarks read 100000 keys from a database using `readwhilewriting`. Range scan bench…
261 ### Short Range Scans
268 ### Long Range scans
D2018-08-23-data-block-hash-index.markdown89 Data block hash index only supports point lookup. We do not support range lookup. Range lookup requ…
/rocksdb-6.9/java/rocksjni/
Drocksjni.cc2278 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/
Ddb_impl.h281 const Range* range, int n,
285 const Range& range,
445 ColumnFamilyHandle* column_family, const Range* range, std::size_t n,
/rocksdb-6.9/
DWINDOWS_PORT.md202 #### Test 2. Prefix Range Query
/rocksdb-6.9/db/compaction/
Dcompaction_job_stats_test.cc303 Range r(start, limit); in Size()

12