Home
last modified time | relevance | path

Searched refs:enabled (Results 1 – 25 of 33) sorted by relevance

12

/rocksdb-6.9/java/src/main/java/org/rocksdb/
DCompressionOptions.java118 public CompressionOptions setEnabled(final boolean enabled) { in setEnabled() argument
119 setEnabled(nativeHandle_, enabled); in setEnabled()
130 public boolean enabled() { in enabled() method in CompressionOptions
131 return enabled(nativeHandle_); in enabled()
149 private native void setEnabled(final long handle, final boolean enabled); in setEnabled() argument
150 private native boolean enabled(final long handle); in enabled() method in CompressionOptions
/rocksdb-6.9/include/rocksdb/
Dwrite_buffer_manager.h35 bool enabled() const { return buffer_size_ != 0; } in enabled() function
50 if (enabled()) { in ShouldFlush()
68 } else if (enabled()) { in ReserveMem()
71 if (enabled()) { in ReserveMem()
78 if (enabled()) { in ScheduleFreeMem()
85 } else if (enabled()) { in FreeMem()
Dadvanced_options.h129 bool enabled; member
137 enabled(false) {} in CompressionOptions()
145 enabled(_enabled) {} in CompressionOptions()
/rocksdb-6.9/tools/
Dtrace_analyzer_tool.cc299 ta_[0].enabled = true; in TraceAnalyzer()
301 ta_[0].enabled = false; in TraceAnalyzer()
305 ta_[1].enabled = true; in TraceAnalyzer()
307 ta_[1].enabled = false; in TraceAnalyzer()
311 ta_[2].enabled = true; in TraceAnalyzer()
313 ta_[2].enabled = false; in TraceAnalyzer()
317 ta_[3].enabled = true; in TraceAnalyzer()
323 ta_[4].enabled = true; in TraceAnalyzer()
329 ta_[5].enabled = true; in TraceAnalyzer()
335 ta_[6].enabled = true; in TraceAnalyzer()
[all …]
Dtrace_analyzer_tool.h142 bool enabled; member
/rocksdb-6.9/
Dthirdparty.inc27 message(STATUS "GFLAGS library is enabled")
66 message(STATUS "SNAPPY library is enabled")
106 message(STATUS "LZ4 library is enabled")
145 message(STATUS "ZLIB library is enabled")
178 message(STATUS "XPRESS is enabled")
204 message(STATUS "ZSTD library is enabled")
243 message(STATUS "JEMALLOC library is enabled")
DWINDOWS_PORT.md138 * Unbuffered I/O enabled
143 * Unbuffered I/O enabled
151 * Unbuffered I/O enabled
156 * Unbuffered I/O enabled
164 * Unbuffered I/O enabled
169 * Unbuffered I/O enabled
DHISTORY.md146 * Fix a buffer overrun problem in BlockBasedTable::MultiGet() when compression is enabled and no co…
171 * The MemTable Bloom filter, when enabled, now always uses cache locality. Options::bloom_locality …
279 * Fix crash when memtable prefix bloom is enabled and read/write a key out of domain of prefix extr…
344 …Fix a memory leak when files with range tombstones are read in mmap mode and block cache is enabled
426enabled` is added to CompressionOptions. For compression_opts, it will be always used no matter wh…
596 …sient reappearance of keys covered by range deletions when memtable prefix bloom filter is enabled.
606 * [Experimental] FIFO compaction with TTL support. It can be enabled by setting CompactionOptionsFI…
643 …ned_write which may improve write throughput in case writing from multiple threads and WAL enabled.
663 …ture can be enabled by setting partition_filters when using kFullFilter. Currently the feature als…
699 * Fix the bug that if 2PC is enabled, checkpoints may loss some recent transactions.
[all …]
/rocksdb-6.9/memtable/
Dalloc_tracker.cc27 if (write_buffer_manager_->enabled() || in Allocate()
36 if (write_buffer_manager_->enabled() || in DoneAllocating()
52 if (write_buffer_manager_->enabled() || in FreeMem()
/rocksdb-6.9/java/src/test/java/org/rocksdb/
DCompressionOptionsTest.java64 public void enabled() { in enabled() method in CompressionOptionsTest
66 assertThat(opt.enabled()).isFalse(); in enabled()
68 assertThat(opt.enabled()).isTrue(); in enabled()
/rocksdb-6.9/docs/_posts/
D2017-05-26-rocksdb-5-4-5-released.markdown19 …ture can be enabled by setting partition_filters when using kFullFilter. Currently the feature als…
29 * Fix PinnableSlice access invalid address when row cache is enabled.
D2014-06-27-rocksdb-3-2-release.markdown14 … for keys of the same prefix, the prefix is only written once. It can be enabled through encoding_…
30 …* Added new option BlockBasedTableOptions::hash_index_allow_collision. When enabled, prefix hash i…
D2017-12-18-17-auto-tuned-rate-limiter.markdown12 …justs itself over time according to demand for background I/O. It can be enabled simply by passing…
26 … p90 - p100 for background write rate are significantly lower with auto-tuned rate limiter enabled.
D2017-02-07-rocksdb-5-1-2-released.markdown14 * Fix the bug that if 2PC is enabled, checkpoints may loss some recent transactions.
D2018-08-23-data-block-hash-index.markdown75 … function returns true, and as a result the hash index feature will not be enabled, and vice versa.
77 …ysWithDifferentByteContentsBeEqual()` function to return `false`, so the hash index can be enabled.
82 …put gain achieved by the hash index lookup. Besides, when compression is enabled, cache miss also …
D2017-06-29-rocksdb-5-5-1-released.markdown18 …ned_write which may improve write throughput in case writing from multiple threads and WAL enabled.
D2017-03-02-rocksdb-5-2-1-released.markdown15 …ndex and creates a 2nd level index on the partitions. The feature can be enabled by setting kTwoLe…
D2017-09-28-rocksdb-5-8-released.markdown24 …sient reappearance of keys covered by range deletions when memtable prefix bloom filter is enabled.
D2016-04-26-rocksdb-4-5-1-released.markdown23 …tion durations will not be measured by default. If you want to have them enabled, you need to set …
D2017-08-25-flushwal.markdown8 …to be flushed to SST files later) and the WAL (write-ahead log) if it is enabled. In the case of a…
/rocksdb-6.9/java/rocksjni/
Dcompression_options.cc143 opt->enabled = jenabled == JNI_TRUE; in Java_org_rocksdb_CompressionOptions_setEnabled()
154 return static_cast<bool>(opt->enabled); in Java_org_rocksdb_CompressionOptions_enabled()
/rocksdb-6.9/tools/advisor/advisor/
Drules.ini167 [Rule "bloom-not-enabled"]
168 conditions=bloom-not-enabled argument
171 [Condition "bloom-not-enabled"]
/rocksdb-6.9/options/
Doptions.cc187 bottommost_compression_opts.enabled ? "true" : "false"); in Dump()
204 compression_opts.enabled ? "true" : "false"); in Dump()
Doptions_test.cc171 ASSERT_EQ(new_cf_opt.compression_opts.enabled, true); in TEST_F()
178 ASSERT_EQ(new_cf_opt.bottommost_compression_opts.enabled, true); in TEST_F()
804 ASSERT_EQ(new_options.compression_opts.enabled, false); in TEST_F()
811 ASSERT_EQ(new_options.bottommost_compression_opts.enabled, false); in TEST_F()
/rocksdb-6.9/table/
Dsst_file_writer.cc195 if (r->ioptions.bottommost_compression_opts.enabled) { in Open()

12