leveldb 0.8.6

An interface for leveldb
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use utils::{tmpdir};
use leveldb::database::{Database};
use leveldb::options::{Options};
use leveldb::database::cache::{Cache};

#[test]
fn test_open_database_with_cache() {
  let mut opts = Options::new();
  opts.create_if_missing = true;
  opts.cache = Some(Cache::new(20));
  let tmp = tmpdir("create_if_missing");
  let res: Result<Database<i32>,_> = Database::open(tmp.path(), opts);
  assert!(res.is_ok());
}