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.
rust-rocksdb/README.md

60 lines
1.3 KiB

10 years ago
rust-rocksdb
============
### running
10 years ago
###### Cargo.toml
10 years ago
```rust
[dependencies.rocksdb]
10 years ago
git = "https://github.com/spacejam/rust-rocksdb"
10 years ago
```
RocksDB 3.8.1 will be pulled in and compiled automatically.
10 years ago
###### Code
10 years ago
```rust
extern crate rocksdb;
use rocksdb::Rocksdb;
fn main() {
10 years ago
match Rocksdb::open_default("/path/for/rocksdb/storage") {
10 years ago
Ok(db) => {
db.put(b"my key", b"my value");
10 years ago
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");
10 years ago
db.close();
},
Err(e) => panic!(e),
}
10 years ago
}
10 years ago
```
10 years ago
10 years ago
### status
- [x] basic open/put/get/delete/close
10 years ago
- [x] linux support
- [x] rocksdb compiled via cargo
- [x] OSX support
10 years ago
- [ ] rustic merge operator
10 years ago
- [ ] batch
- [ ] iterator
- [ ] range
10 years ago
- [ ] create/release snapshot
- [ ] column family operations
10 years ago
- [ ] compaction filter, style
10 years ago
- [ ] LRU cache
- [ ] destroy/repair
10 years ago
- [ ] comparator
- [ ] slicetransform
- [ ] windows support
Feedback and pull requests welcome!