2 个版本
0.1.1 | 2022 年 7 月 12 日 |
---|---|
0.1.0 | 2022 年 7 月 12 日 |
#1606 在 数据库接口
83KB
2.5K SLoC
nikidb
一个基于 B+ 树的持久化 k-v 存储库,用 Rust 编写,类似于 boltdb
示例
use nikidb::db::DB;
use nikidb::db::DEFAULT_OPTIONS;
use nikidb::error::{NKError, NKResult};
use nikidb::tx::Tx;
use std::str;
fn main() {
let db = DB::open("./test.db", DEFAULT_OPTIONS).unwrap();
//create bucket
db.update(Box::new(|tx: &mut Tx| -> NKResult<()> {
match tx.create_bucket("default".as_bytes()) {
Ok(_) => println!("create default bucket success"),
Err(NKError::ErrBucketExists(e)) => println!("{} bucket exist", e),
Err(e) => panic!("create bucket error"),
}
Ok(())
}))
.unwrap();
//set key value
db.update(Box::new(|tx: &mut Tx| -> NKResult<()> {
let b = tx.bucket("default".as_bytes())?;
b.put(b"abc", b"123").unwrap();
Ok(())
}))
.unwrap();
//get key value
db.view(Box::new(|tx: &mut Tx| -> NKResult<()> {
let b = tx.bucket("default".as_bytes())?;
let v = b.get(b"abc").unwrap();
println!("value:{:?}", str::from_utf8(v).unwrap());
Ok(())
}))
.unwrap();
}
依赖项
~1.7–2.5MB
~46K SLoC