rocksdb-node
rocksdb-node copied to clipboard
Trying to just install rocks db but getting the following error: In file included from ../rocksdb.cc:3:0: ../DBNode.h:5:24: fatal error: rocksdb/db.h: No such file or directory #include "rocksdb/db.h" using node v9.11.1...
Are you planning to add this feature?
I am running `rocksdb-node` 1.7.2 with rocks 5.8 on MacOs. Below is my code: ``` db = rocksdb.open( {create_if_missing: true}, path.join(dbPath, `users-${nodeEnv}.rocksdb`) ); db.put('node', 'rocks'); ``` after running above code...
Is this package fixed to use RocksDB version 5.2, or it is possible to run it on the latest version? If there is a way to update to the latest...
Is there any particular example on how to open/create a db in plaintable SST format?
Hey, great work on this project so far! I was wondering how or if PrefixIterators are supported in this binding yet? https://github.com/facebook/rocksdb/wiki/rocksdb-basics#prefix-iterators I'm trying to implement a Hexastore with this...