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

#427 in Database interfaces

Download history 3917/week @ 2024-06-20 3614/week @ 2024-06-27 2853/week @ 2024-07-04 4071/week @ 2024-07-11 3965/week @ 2024-07-18 4318/week @ 2024-07-25 5289/week @ 2024-08-01 4057/week @ 2024-08-08 4633/week @ 2024-08-15 5233/week @ 2024-08-22 5001/week @ 2024-08-29 4329/week @ 2024-09-05 4892/week @ 2024-09-12 3552/week @ 2024-09-19 4257/week @ 2024-09-26 4453/week @ 2024-10-03

17,962 downloads per month
Used in 49 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–490KB