| Package | Description |
|---|---|
| org.rocksdb |
The RocksDB Java driver
|
| Modifier and Type | Method and Description |
|---|---|
Logger |
BackupEngineOptions.infoLog()
Set the logger to use for Backup info and error messages
Default: null
|
| Modifier and Type | Method and Description |
|---|---|
BackupEngineOptions |
BackupEngineOptions.setInfoLog(Logger logger)
Set the logger to use for Backup info and error messages
|
DBOptions |
DBOptions.setLogger(Logger logger) |
T |
DBOptionsInterface.setLogger(Logger logger)
Any internal progress/error information generated by
the db will be written to the Logger if it is non-nullptr,
or to a file stored in the same directory as the DB
contents if info_log is nullptr.
|
Options |
Options.setLogger(Logger logger) |
| Constructor and Description |
|---|
PersistentCache(Env env,
String path,
long size,
Logger logger,
boolean optimizedForNvm) |
SstFileManager(Env env,
Logger logger)
Create a new SstFileManager that can be shared among multiple RocksDB
instances to track SST file and control there deletion rate.
|
SstFileManager(Env env,
Logger logger,
long rateBytesPerSec)
Create a new SstFileManager that can be shared among multiple RocksDB
instances to track SST file and control there deletion rate.
|
SstFileManager(Env env,
Logger logger,
long rateBytesPerSec,
double maxTrashDbRatio)
Create a new SstFileManager that can be shared among multiple RocksDB
instances to track SST file and control there deletion rate.
|
SstFileManager(Env env,
Logger logger,
long rateBytesPerSec,
double maxTrashDbRatio,
long bytesMaxDeleteChunk)
Create a new SstFileManager that can be shared among multiple RocksDB
instances to track SST file and control there deletion rate.
|
Copyright © 2022. All rights reserved.