com.github.ddth.commons.rocksdb.README.md Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ddth-commons-core Show documentation
Show all versions of ddth-commons-core Show documentation
DDTH's Java Common Libraries and Utilities
# com.github.ddth.commons.rocksdb
Utility and helper classes to work with [RocksDB](http://rocksdb.org).
_**Available since v0.8.0.**_
## Maven
```xml
com.github.ddth
ddth-commons-rocksdb
${ddth_commons_version}
pom
```
**Class `RocksDbUtils`**
- Helper methods to open RocksDB database.
- Wrapper class to GET/PUT/DELETE RocksDB data.
**Class `RocksDbWrapper`**
## Examples
```java
package com.github.ddth.commons.qnd.rocksdb;
import java.io.File;
import java.io.IOException;
import org.apache.commons.io.FileUtils;
import com.github.ddth.commons.rocksdb.RocksDbException;
import com.github.ddth.commons.rocksdb.RocksDbWrapper;
public class QndRocksDbWrapper {
public static void main(String[] args) throws RocksDbException, IOException {
// cleanup
String dataDir = "./temp";
FileUtils.deleteDirectory(new File(dataDir));
try (RocksDbWrapper rocksDb = RocksDbWrapper.openReadWrite(dataDir)) {
// RocksDbWrapper instance has been initialized by RocksDbWrapper.openXXX() method.
// Calling rocksDb.init() is not needed.
System.out.println("Number of keys: "
+ rocksDb.getEstimateNumKeys(RocksDbWrapper.DEFAULT_COLUMN_FAMILY));
// fetch a value from default column family
byte[] value = rocksDb.get("key");
System.out.println("Value of [key]: " + (value != null ? new String(value) : "[null]"));
// write a value
rocksDb.put("key", "a value");
System.out.println("Number of keys: "
+ rocksDb.getEstimateNumKeys(RocksDbWrapper.DEFAULT_COLUMN_FAMILY));
// fetch it back
value = rocksDb.get("key");
System.out.println("Value of [key]: " + (value != null ? new String(value) : "[null]"));
}
}
}
```
## History
**v0.9.3 - 2019-04-29**
- Upgrade to `rocksdbjni:6.0.1`.
**v0.8.0 - 2018-01-22**
- First release
© 2015 - 2025 Weber Informatics LLC | Privacy Policy