Home
last modified time | relevance | path

Searched refs:seek (Results 1 – 22 of 22) sorted by relevance

/rocksdb-6.9/java/src/test/java/org/rocksdb/
DWriteBatchWithIndexTest.java48 it.seek(k1); in readYourOwnWrites()
53 it.seek(k2); in readYourOwnWrites()
62 it.seek(k3); in readYourOwnWrites()
70 it.seek(k2); in readYourOwnWrites()
77 it.seek(k1); in readYourOwnWrites()
83 it.seek(k1); in readYourOwnWrites()
90 it.seek(k3); in readYourOwnWrites()
96 it.seek(k3); in readYourOwnWrites()
220 it.seek(key); in iterator()
229 it.seek(db); in iterator()
[all …]
DRocksIteratorTest.java93 iterator.seek(key); in rocksIterator()
110 iterator.seek("key0".getBytes()); in rocksIterator()
114 iterator.seek("key1".getBytes()); in rocksIterator()
118 iterator.seek("key1.5".getBytes()); in rocksIterator()
122 iterator.seek("key2".getBytes()); in rocksIterator()
126 iterator.seek("key3".getBytes()); in rocksIterator()
DBuiltinComparatorTest.java67 rocksIterator.seek("abc".getBytes()); in builtinForwardComparator()
121 rocksIterator.seek("abc".getBytes()); in builtinReverseComparator()
125 rocksIterator.seek("abc999".getBytes()); in builtinReverseComparator()
DSstFileReaderTest.java134 iterator.seek(direct); in readSstFile()
DAbstractTransactionTest.java335 iterator.seek(k1); in getIterator()
356 iterator.seek(k1); in getIterator_cf()
/rocksdb-6.9/docs/_posts/
D2018-08-23-data-block-hash-index.markdown41seek index. RocksDB does a binary search when performing point lookup for keys in data blocks to f…
45 ![](/static/images/data-block-hash-index/block-format-binary-seek.png)
47 …the binary search. The hash index is just an array of pointers pointing into the binary seek index.
54 …sh collision, and the less chance for a point lookup falls back to binary seek (fall back ratio) d…
87seek index, i.e. restart interval index, the total number of restart intervals cannot be more than…
101 For records not supported, the searching process will fall back to the traditional binary seek.
D2014-06-27-rocksdb-3-2-release.markdown24 * We removed seek compaction as a concept from RocksDB
D2014-09-15-rocksdb-3-5-release.markdown19 …2. new ReadOptions.total_order_seek to force total order seek when block-based table is built with…
D2015-02-27-write-batch-with-index.markdown16 …()`. Additionally, users can create an iterator of a WriteBatchWithIndex, seek to any key location…
D2018-11-21-delete-range.markdown249 …anced up to 10 keys away from the seek position for short range scans, and advanced up to 1000 key…
/rocksdb-6.9/java/src/main/java/org/rocksdb/
DRocksIteratorInterface.java55 void seek(byte[] target); in seek() method
79 void seek(ByteBuffer target); in seek() method
DAbstractRocksIterator.java58 public void seek(byte[] target) { in seek() method in AbstractRocksIterator
70 public void seek(ByteBuffer target) { in seek() method in AbstractRocksIterator
/rocksdb-6.9/java/src/test/java/org/rocksdb/util/
DBytewiseComparatorTest.java283 iter.seek(bytes(key)); in doRandomIterationTest()
284 result_iter.seek(bytes(key)); in doRandomIterationTest()
423 public void seek(final byte[] target) {
510 public void seek(ByteBuffer target) {
/rocksdb-6.9/db/
Ddb_iter_stress_test.cc524 bool seek = !ref_iter->Valid() || rnd.Next() % 10 == 0; in TEST_F() local
529 if (!seek) { in TEST_F()
588 if (seek) in TEST_F()
593 if (seek) in TEST_F()
/rocksdb-6.9/java/rocksjni/
Diterator.cc117 auto seek = [&it](ROCKSDB_NAMESPACE::Slice& target_slice) { in Java_org_rocksdb_RocksIterator_seekDirect0() local
120 ROCKSDB_NAMESPACE::JniUtil::k_op_direct(seek, env, jtarget, jtarget_off, in Java_org_rocksdb_RocksIterator_seekDirect0()
Dsst_file_reader_iterator.cc232 auto seek = [&it](ROCKSDB_NAMESPACE::Slice& target_slice) { in Java_org_rocksdb_SstFileReaderIterator_seekDirect0() local
235 ROCKSDB_NAMESPACE::JniUtil::k_op_direct(seek, env, jtarget, jtarget_off, in Java_org_rocksdb_SstFileReaderIterator_seekDirect0()
Dwrite_batch_with_index.cc755 auto seek = [&it](ROCKSDB_NAMESPACE::Slice& target_slice) { in Java_org_rocksdb_WBWIRocksIterator_seekDirect0() local
758 ROCKSDB_NAMESPACE::JniUtil::k_op_direct(seek, env, jtarget, jtarget_off, in Java_org_rocksdb_WBWIRocksIterator_seekDirect0()
/rocksdb-6.9/java/samples/src/main/java/
DRocksDBSample.java271 iterator.seek(iterator.key()); in main()
/rocksdb-6.9/
DHISTORY.md67 …t causes segfault when hash is used, max_open_files != -1 and total order seek is used and switche…
73 … will return the same result as total order seek, but may choose to use prefix seek internally bas…
94 * Fix a bug in DBIter that is_blob_ state isn't updated when iterating backward using seek.
141 * Level iterator to invlidate the iterator more often in prefix seek and the level is filtered out …
728 * Added Iterator::SeekForPrev(). This new API will seek to the last key that less than or equal to …
1054 * We removed seek compaction as a concept from RocksDB because:
1082 * Deprecated ReadOptions.prefix and ReadOptions.prefix_seek. Seek() defaults to prefix-based seek w…
DWINDOWS_PORT.md71 …ith `WriteFile/ReadFile` with `OVERLAPPED` structure so we can atomically seek to the position of …
/rocksdb-6.9/docs/
DLICENSE-DOCUMENTATION324 right the Licensor may have to seek remedies for Your violations
/rocksdb-6.9/tools/
Ddb_bench_tool.cc5419 int64_t seek = 0; in MixGraph() local
5571 seek++; in MixGraph()
5598 gets, puts, seek, found, read); in MixGraph()