| Package | Description |
|---|---|
| org.rocksdb |
| Modifier and Type | Method and Description |
|---|---|
Range |
RocksDB.suggestCompactRange()
Suggest the range to compact for the default column family.
|
Range |
RocksDB.suggestCompactRange(ColumnFamilyHandle columnFamilyHandle)
Suggest the range to compact.
|
| Modifier and Type | Method and Description |
|---|---|
RocksDB.CountAndSize |
RocksDB.getApproximateMemTableStats(ColumnFamilyHandle columnFamilyHandle,
Range range)
This method is similar to
RocksDB.getApproximateSizes(ColumnFamilyHandle, List, SizeApproximationFlag...),
except that it returns approximate number of records and size in memtables. |
RocksDB.CountAndSize |
RocksDB.getApproximateMemTableStats(Range range)
This method is similar to
RocksDB.getApproximateSizes(ColumnFamilyHandle, List, SizeApproximationFlag...),
except that it returns approximate number of records and size in memtables. |
| Modifier and Type | Method and Description |
|---|---|
long[] |
RocksDB.getApproximateSizes(ColumnFamilyHandle columnFamilyHandle,
List<Range> ranges,
SizeApproximationFlag... sizeApproximationFlags)
Get the approximate file system space used by keys in each range.
|
long[] |
RocksDB.getApproximateSizes(List<Range> ranges,
SizeApproximationFlag... sizeApproximationFlags)
Get the approximate file system space used by keys in each range for
the default column family.
|
Map<String,TableProperties> |
RocksDB.getPropertiesOfTablesInRange(ColumnFamilyHandle columnFamilyHandle,
List<Range> ranges)
Get the properties of tables in range.
|
Map<String,TableProperties> |
RocksDB.getPropertiesOfTablesInRange(List<Range> ranges)
Get the properties of tables in range for the default column family.
|
Copyright © 2021. All rights reserved.