Safe Rust bindings for LMDB with encryption at rest
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lmdb-rs/README.md

29 lines
754 B

10 years ago
[![Build Status](https://travis-ci.org/danburkert/lmdb-rs.svg?branch=master)](https://travis-ci.org/danburkert/lmdb-rs)
10 years ago
10 years ago
[Documentation](http://rust-ci.org/danburkert/lmdb-rs/doc/lmdb/)
[Cargo](https://crates.io/crates/lmdb)
# lmdb-rs
Safe Rust bindings for the [Symas Lightning Memory-Mapped Database (LMDB)](http://symas.com/mdb/).
10 years ago
Provides the minimal amount of abstraction necessary to interact with LMDB safely in Rust. In
general, the API is very similar to the LMDB [C-API](http://symas.com/mdb/doc/).
## Building from Source
```bash
git clone --recursive git@github.com:danburkert/lmdb-rs.git
cd lmdb-rs
cargo build
```
10 years ago
## TODO
10 years ago
* [x] lmdb-sys.
* [x] Cursors.
10 years ago
* [ ] Zero-copy put API.
* [ ] Nested transactions.
* [ ] Database statistics.