2个版本

新版本 0.8.8 2024年8月24日
0.8.7 2024年8月24日

#889数据库接口

Download history 149/week @ 2024-08-18

每月149次下载

MIT 许可证

1.5MB
23K SLoC

C++ 22K SLoC // 0.1% comments Rust 1.5K SLoC // 0.0% comments C 329 SLoC // 0.0% comments Bazel 101 SLoC // 0.5% comments

Rust leveldb绑定

为Rust提供的leveldb几乎完整的绑定。

文档

Rust版本策略

leveldb 在Rust的稳定版上构建和测试。最新测试版本:1.80.1

依赖项

  • LevelDB:master分支,提交id:23e35d7
  • Snappy:v1.2.1

使用

如果你的项目使用Cargo,请在你的Cargo.toml中添加以下行

[dependencies]

leveldb-rs-binding = "0.8"

开发

确保你已经安装了所有先决条件。运行

$ cargo build

来构建

$ cargo test

来运行测试套件。

示例

extern crate tempdir;
extern crate leveldb;

use tempdir::TempDir;
use leveldb::database::Database;
use leveldb::iterator::Iterable;
use leveldb::kv::KV;
use leveldb::options::{Options,WriteOptions,ReadOptions};

fn main() {
  let tempdir = TempDir::new("demo").unwrap();
  let path = tempdir.path();

  let mut options = Options::new();
  options.create_if_missing = true;
  let mut database = match Database::open(path, options) {
      Ok(db) => { db },
      Err(e) => { panic!("failed to open database: {:?}", e) }
  };

  let write_opts = WriteOptions::new();
  match database.put(write_opts, 1, &[1]) {
      Ok(_) => { () },
      Err(e) => { panic!("failed to write to database: {:?}", e) }
  };

  let read_opts = ReadOptions::new();
  let res = database.get(read_opts, 1);

  match res {
    Ok(data) => {
      assert!(data.is_some());
      assert_eq!(data, Some(vec![1]));
    }
    Err(e) => { panic!("failed reading data: {:?}", e) }
  }

  let read_opts = ReadOptions::new();
  let mut iter = database.iter(read_opts);
  let entry = iter.next();
  assert_eq!(
    entry,
    Some((1, vec![1]))
  );
}

待解决问题

  • 缺少过滤策略
  • 不支持具有任意起始和结束点的迭代器

许可证

MIT,见LICENSE

依赖项