12 unstable releases (5 breaking)

Uses old Rust 2015

0.14.0 Mar 10, 2020
0.12.3 Sep 25, 2019
0.11.4 Apr 15, 2019
0.11.3 Mar 29, 2019
0.9.0 Nov 19, 2018

#510 in Database interfaces

Download history 5080/week @ 2024-07-30 4420/week @ 2024-08-06 4489/week @ 2024-08-13 4724/week @ 2024-08-20 5433/week @ 2024-08-27 4592/week @ 2024-09-03 4827/week @ 2024-09-10 3418/week @ 2024-09-17 4223/week @ 2024-09-24 4880/week @ 2024-10-01 5413/week @ 2024-10-08 3830/week @ 2024-10-15 4246/week @ 2024-10-22 4193/week @ 2024-10-29 2677/week @ 2024-11-05 5020/week @ 2024-11-12

16,905 downloads per month
Used in 56 crates (11 directly)

Apache-2.0

535KB
13K SLoC

C 10K SLoC // 0.2% comments Rust 3.5K SLoC // 0.0% comments

Build Status Windows Build status

lmdb-rs

Idiomatic and safe APIs for interacting with the Symas Lightning Memory-Mapped Database (LMDB).

This repo is a fork of danburkert/lmdb-rs with fixes for issues encountered by mozilla/rkv.

Building from Source

git clone --recursive git@github.com:mozilla/lmdb-rs.git
cd lmdb-rs
cargo build

Publishing to crates.io

To publish the lmdb-rkv-sys crate to crates.io:

git clone --recursive git@github.com: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 git@github.com:mozilla/lmdb-rs.git --tags

To publish the lmdb-rkv crate to crates.io:

git clone --recursive git@github.com: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 git@github.com:mozilla/lmdb-rs.git --tags
# Change the lmdb-rkv-sys dependency in Cargo.toml back to a path dependency
# on the ./lmdb-sys directory.

Features

  • lmdb-sys.
  • Cursors.
  • Zero-copy put API.
  • Nested transactions.
  • Database statistics.

Dependencies

~160–550KB
~12K SLoC