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

28 lines
781 B

10 years ago
[![Build Status](https://travis-ci.org/danburkert/lmdb-rs.svg?branch=master)](https://travis-ci.org/danburkert/lmdb-rs)
8 years ago
[![Windows Build Status](https://ci.appveyor.com/api/projects/status/0bw21yfqsrsv3soh/branch/master?svg=true)](https://ci.appveyor.com/project/danburkert/lmdb-rs/branch/master)
10 years ago
8 years ago
[Documentation](http://danburkert.github.io/lmdb-rs/lmdb/index.html)
10 years ago
[Cargo](https://crates.io/crates/lmdb)
# lmdb-rs
Idiomatic and safe APIs for interacting with the
[Symas Lightning Memory-Mapped Database (LMDB)](http://symas.com/mdb/).
10 years ago
## 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.
* [x] Zero-copy put API.
10 years ago
* [ ] Nested transactions.
* [ ] Database statistics.