41个版本
新 0.20.5 | 2024年8月18日 |
---|---|
0.20.3 | 2024年7月2日 |
0.20.0-alpha.9 | 2023年11月27日 |
0.20.0-alpha.3 | 2023年7月13日 |
0.6.0 | 2019年11月26日 |
#31 in 数据库接口
47,743 每月下载量
用于 15 个crate(9个直接使用)
1MB
17K SLoC
heed
以Rust为中心的、开销最小的LMDB抽象。这个库允许在LMDB中存储各种Rust类型,并扩展到支持与Serde兼容的类型。
简单示例使用
以下是如何以安全且ACID的方式存储和读取LMDB中条目的示例。有关使用示例,请参阅heed/examples/。要了解更高级的使用技巧,请查看我们的食谱。
use std::fs;
use std::path::Path;
use heed::{EnvOpenOptions, Database};
use heed::types::*;
fn main() -> Result<(), Box<dyn std::error::Error>> {
let env = unsafe { EnvOpenOptions::new().open("my-first-db")? };
// We open the default unnamed database
let mut wtxn = env.write_txn()?;
let db: Database<Str, U32<byteorder::NativeEndian>> = env.create_database(&mut wtxn, None)?;
// We open a write transaction
db.put(&mut wtxn, "seven", &7)?;
db.put(&mut wtxn, "zero", &0)?;
db.put(&mut wtxn, "five", &5)?;
db.put(&mut wtxn, "three", &3)?;
wtxn.commit()?;
// We open a read transaction to check if those values are now available
let mut rtxn = env.read_txn()?;
let ret = db.get(&rtxn, "zero")?;
assert_eq!(ret, Some(0));
let ret = db.get(&rtxn, "five")?;
assert_eq!(ret, Some(5));
Ok(())
}
从源码构建
您可以使用以下命令克隆存储库
git clone --recursive https://github.com/meilisearch/heed.git
cd heed
cargo build
但是,如果您已经克隆了它并忘记初始化子模块,请执行以下命令
git submodule update --init
依赖项
~0.7–2.4MB
~49K SLoC