Searched refs:direct (Results 1 – 8 of 8) sorted by relevance
| /rocksdb-6.9/java/src/test/java/org/rocksdb/ |
| D | SstFileReaderTest.java | 132 ByteBuffer direct = ByteBuffer.allocateDirect(128); in readSstFile() local 133 direct.put("key1".getBytes()).flip(); in readSstFile() 134 iterator.seek(direct); in readSstFile() 135 assertThat(direct.position()).isEqualTo(4); in readSstFile() 136 assertThat(direct.limit()).isEqualTo(4); in readSstFile() 142 direct.clear(); in readSstFile() 143 assertThat(iterator.key(direct)).isEqualTo("key1".getBytes().length); in readSstFile() 145 direct.get(dst); in readSstFile() 148 direct.clear(); in readSstFile() 149 assertThat(iterator.value(direct)).isEqualTo("value1".getBytes().length); in readSstFile() [all …]
|
| /rocksdb-6.9/docs/_posts/ |
| D | 2017-05-12-partitioned-index-filter.markdown | 28 …e the small memory that is present to a node with 100TB of data by using direct IO (skipping OS fi… 32 …would be available in presence of other DBs on the same node by by using direct IO (skipping OS fi…
|
| D | 2017-06-29-rocksdb-5-5-1-released.markdown | 21 * Fix the bug that Direct I/O uses direct reads for non-SST file
|
| D | 2017-05-26-rocksdb-5-4-5-released.markdown | 27 * Fix WritableFile buffer size in direct IO.
|
| /rocksdb-6.9/ |
| D | LICENSE.Apache | 19 "control" means (i) the power, direct or indirect, to cause the 85 or a Contribution incorporated within the Work constitutes direct 158 liable to You for damages, including any direct, indirect, special,
|
| D | HISTORY.md | 27 * Added overloads of common API methods using direct ByteBuffers for keys and values (#2283). 266 …et() and iterator Seek() performance in some situations, especially when direct IO is enabled and … 436 * Improve the performance of iterators doing long range scans by using readahead, when using direct… 446 * Fix a bug caused by not copying the block trailer with compressed SST file, direct IO, prefetcher… 456 …age, which advises against simultaneously reading a file in buffered and direct modes, due to poss… 646 * Fix the bug that Direct I/O uses direct reads for non-SST file 691 * Fix bugs of data corruption in direct I/O
|
| /rocksdb-6.9/docs/ |
| D | CONTRIBUTING.md | 105 …ant to have a page that is linked to from another page, but not exposed as direct link to the user.
|
| /rocksdb-6.9/java/rocksjni/ |
| D | portal.h | 1289 JNIEnv* env, const bool direct, const size_t capacity, 1291 return constructWith(env, direct, nullptr, capacity, jbytebuffer_clazz); 1295 JNIEnv* env, const bool direct, const char* buf, const size_t capacity, 1297 if (direct) {
|