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 ffa6daf263 update readme 10 years ago
rocksdb-sys add cargo build for rocksdb 3.8.1, no more LD_PRELOAD 10 years ago
src add cargo build for rocksdb 3.8.1, no more LD_PRELOAD 10 years ago
.gitignore some more scratchings, rudimentary structuring, added more 'features' (bugs) 10 years ago
.gitmodules add rocksdb submodule 10 years ago
Cargo.toml add cargo build for rocksdb 3.8.1, no more LD_PRELOAD 10 years ago
README.md update readme 10 years ago

README.md

rust-rocksdb

  • rust wrapper for rocksdb
  • development began 11/16/14
  • status (uncompleted tasks are not ranked by priority):
    • basic open/put/get/close
    • linux support
    • rocksdb itself retrieved and compiled via cargo
    • OSX support
    • windows support
    • batch
    • iterator
    • create/release snapshot
    • range
    • compaction filter, style
    • rustic merge operator
    • comparator
    • slicetransform
    • LRU cache
    • windows support
    • logger
    • column family operations
    • destroy/repair

running

  • Cargo.toml
[dependencies.rocksdb]                                                                                                                                                                              
git = "https://github.com/spacejam/rust-rocksdb"
  • Code
extern crate rocksdb;                                                                                                                                                                               
                                                                                                                                                                                                    
fn main() {                                                                                                                                                                                         
    let db = rocksdb::open("/path/to/db".to_string(), true).unwrap();                                                                                                                               
    assert!(db.put(b"hey", b"v1111").is_ok());                                                                                                                                                      
    db.get(b"hey").map( |raw| {                                                                                                                                                                     
        std::str::from_utf8(raw.as_slice()).map( |v| {                                                                                                                                              
            println!("value: {}", v);                                                                                                                                                               
        })                                                                                                                                                                                          
    });                                                                                                                                                                                             
    db.close()                                                                                                                                                                                      
}
  • Feedback and pull requests welcome!