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.
Tyler Neely
8b24b6304f
|
10 years ago | |
---|---|---|
rocksdb-sys | 10 years ago | |
src | 10 years ago | |
.gitignore | 10 years ago | |
.gitmodules | 10 years ago | |
Cargo.toml | 10 years ago | |
README.md | 10 years ago |
README.md
rust-rocksdb
running
- Cargo.toml
[dependencies.rocksdb]
git = "https://github.com/spacejam/rust-rocksdb"
- Code
extern crate rocksdb;
fn main() {
match rocksdb::create_or_open("/path/for/rocksdb/storage".to_string()) {
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"),
}});
db.get(b"NOT my key").on_absent( || { println!("value not found") });
db.close();
},
Err(e) => panic!(e),
}
}
status
-
basic open/put/get/close
-
linux support
-
rocksdb compiled via cargo
-
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!