ckb-rocksdb-0.12.2 has been yanked.
Rust wrapper for RocksDB.
Examples
use *;
# use TemporaryDBPath;
// NB: db is automatically closed at end of lifetime
let path = "_path_for_rocksdb_storage";
# let path = new;
#
Opening a database and a single column family with custom options:
use ;
# use TemporaryDBPath;
let path = "_path_for_rocksdb_storage_with_cfs";
# let path = new;
let mut cf_opts = default;
cf_opts.set_max_write_buffer_number;
let cf = new;
let mut db_opts = default;
db_opts.create_missing_column_families;
db_opts.create_if_missing;
#