docs.rs failed to build rocksdb-0.0.1
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: rocksdb-0.22.0

rust-rocksdb

running

Install RocksDB. rust-rocksdb has been tested with version 3.8.1 on linux and windows.

Cargo.toml
[dependencies.rocksdb]
git = "https://github.com/spacejam/rust-rocksdb"
Code
extern crate rocksdb;
use rocksdb::RocksDB;

fn main() {
  match RocksDB::open_default("/path/for/rocksdb/storage") {
    Ok(db) => {
      db.put(b"my key", b"my value");

      db.get(b"my key").map( |value| {
        match value.to_utf8() {
          Some(v) =>
            println!("retrieved utf8 value {}", v),
          None =>
            println!("did not read valid utf-8 out of the db"),
        }
      })
        .on_absent( || { println!("value not found") })
        .on_error( |e| { println!("error retrieving value: {}", e) });

      db.delete(b"my key");

      db.close();
    },
    Err(e) => panic!(e),
  }
}

status

  • basic open/put/get/delete/close
  • linux support
  • rocksdb compiled via cargo
  • OSX support
  • rustic merge operator
  • batch
  • iterator
  • range
  • create/release snapshot
  • column family operations
  • compaction filter, style
  • LRU cache
  • destroy/repair
  • comparator
  • slicetransform
  • windows support

Feedback and pull requests welcome!