1个不稳定版本
使用旧的Rust 2015
0.1.0 | 2022年11月1日 |
---|
#2667 在 数据库接口
105KB
2K SLoC
lmdb-rs
与Symas Lightning Memory-Mapped Database (LMDB)交互的惯用且安全的API。
此存储库是danburkert/lmdb-rs的分支,针对mozilla/rkv遇到的问题进行了修复。
从源码构建
git clone --recursive [email protected]:mozilla/lmdb-rs.git
cd lmdb-rs
cargo build
发布到crates.io
要将lmdb-rkv-sys crate发布到crates.io
git clone --recursive [email protected]:mozilla/lmdb-rs.git
cd lmdb-rs/lmdb-sys
# Update the version string in lmdb-sys/Cargo.toml and lmdb-sys/src/lib.rs.
cargo publish
git tag lmdb-rkv-sys-$VERSION # where $VERSION is the updated version string
git push [email protected]:mozilla/lmdb-rs.git --tags
要将lmdb-rkv crate发布到crates.io
git clone --recursive [email protected]:mozilla/lmdb-rs.git
cd lmdb-rs
# Update the version string in Cargo.toml and src/lib.rs and temporarily change
# the lmdb-rkv-sys dependency in Cargo.toml to the latest version on crates.io.
cargo publish
git tag $VERSION # where $VERSION is the updated version string
git push [email protected]:mozilla/lmdb-rs.git --tags
# Change the lmdb-rkv-sys dependency in Cargo.toml back to a path dependency
# on the ./lmdb-sys directory.
特性
- lmdb-sys.
- 游标。
- 零拷贝put API。
- 嵌套事务。
- 数据库统计信息。
依赖项
~0.6–0.9MB
~20K SLoC