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

56 lines
1.1 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
```
10 years ago
- Code
10 years ago
```rust
extern crate rocksdb;
fn main() {
10 years ago
match rocksdb::create_or_open("/path/for/rocksdb/storage".to_string()) {
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"),
}});
10 years ago
db.get(b"NOT my key").on_absent( || { println!("value not found") });
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
- [ ] column family operations
- [ ] LRU cache
- [ ] destroy/repair
- [ ] batch
- [ ] iterator
- [ ] create/release snapshot
- [ ] range
- [ ] rustic merge operator
- [ ] compaction filter, style
- [ ] comparator
- [ ] slicetransform
- [ ] logger
- [ ] windows support
Feedback and pull requests welcome!