Home
last modified time | relevance | path

Searched refs:targetLevel (Results 1 – 3 of 3) sorted by relevance

/rocksdb-6.9/java/src/main/java/org/rocksdb/
DCompactRangeOptions.java116 public int targetLevel() { in targetLevel() method in CompactRangeOptions
117 return targetLevel(nativeHandle_); in targetLevel()
127 public CompactRangeOptions setTargetLevel(final int targetLevel) { in setTargetLevel() argument
128 setTargetLevel(nativeHandle_, targetLevel); in setTargetLevel()
222 private native int targetLevel(final long handle); in targetLevel() method in CompactRangeOptions
224 final int targetLevel); in setTargetLevel() argument
DRocksDB.java3200 public void compactRange(final boolean changeLevel, final int targetLevel, in compactRange() argument
3202 compactRange(null, changeLevel, targetLevel, targetPathId); in compactRange()
3245 options.setTargetLevel(targetLevel); in compactRange()
3285 final boolean changeLevel, final int targetLevel, in compactRange() argument
3287 compactRange(null, begin, end, changeLevel, targetLevel, targetPathId); in compactRange()
3328 final int targetLevel, final int targetPathId) in compactRange() argument
3332 options.setTargetLevel(targetLevel); in compactRange()
4098 final int targetLevel) throws RocksDBException { in promoteL0() argument
4101 targetLevel); in promoteL0()
4111 public void promoteL0(final int targetLevel) in promoteL0() argument
[all …]
/rocksdb-6.9/java/src/test/java/org/rocksdb/
DCompactRangeOptionsTest.java56 public void targetLevel() { in targetLevel() method in CompactRangeOptionsTest
60 assertThat(opt.targetLevel()).isEqualTo(value); in targetLevel()
63 assertThat(opt.targetLevel()).isEqualTo(value); in targetLevel()