fork of https://github.com/rust-rocksdb/rust-rocksdb for nextgraph
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.2 KiB
53 lines
1.2 KiB
rust-rocksdb
|
|
============
|
|
|
|
### running
|
|
Install RocksDB. rust-rocksdb has been tested with version 3.8.1 on linux and OSX.
|
|
###### Cargo.toml
|
|
```rust
|
|
[dependencies]
|
|
rocksdb = "~0.0.1"
|
|
```
|
|
###### Code
|
|
```rust
|
|
extern crate rocksdb;
|
|
use rocksdb::RocksDB;
|
|
|
|
fn main() {
|
|
let db = RocksDB::open_default("/path/for/rocksdb/storage").unwrap;
|
|
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();
|
|
}
|
|
```
|
|
|
|
### status
|
|
- [x] basic open/put/get/delete/close
|
|
- [x] linux support
|
|
- [x] rocksdb compiled via cargo
|
|
- [x] OSX support
|
|
- [x] 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!
|
|
|