Registry / database / leveldbjni-all

leveldbjni-all

JSON →
library1.6.1javamavenunverified

Uber jar containing all LevelDB JNI platform libraries and dependencies.

<dependency> <groupId>org.fusesource.leveldbjni</groupId> <artifactId>leveldbjni-all</artifactId> <version>1.6.1</version> </dependency>
INSTALL
IMPORT
SIG · LEVELDBJNI-ALL
L
leveldbjni-all
databasejavav1.6.1
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

JniDBFactory
org.fusesource.leveldbjni.JniDBFactory

Open a LevelDB database and perform basic operations.

import org.fusesource.leveldbjni.JniDBFactory; import org.iq80.leveldb.*; import java.io.*; DBFactory factory = new JniDBFactory(); Options options = new Options(); options.createIfMissing(true); DB db = factory.open(new File("/tmp/db"), options); db.put("key".getBytes(), "value".getBytes()); byte[] value = db.get("key".getBytes()); db.close();
Debug
Known issues
gotchaLevelDB JNI requires native libraries; the uber jar includes them but may have platform-specific issues.
fix
Ensure the correct platform library is loaded; consider using LevelDB Java port (org.iq80.leveldb) as fallback.
affects: all
Upgrade
Version history
1.6.1latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
7 hits · last 30 days
node
6
Resources
leveldbjni-all — mvn dependency:get leveldbjni-all · libregistry