719f34cee5
This adds the bulk insert to kvstore as discussed in Bug 1522638 Differential Revision: https://phabricator.services.mozilla.com/D22032 --HG-- extra : moz-landing-system : lando |
||
---|---|---|
.. | ||
examples | ||
src | ||
tests | ||
.cargo-checksum.json | ||
Cargo.toml | ||
LICENSE | ||
README.md | ||
run-all-examples.sh |
README.md
rkv
The rkv Rust crate is a simple, humane, typed Rust interface to LMDB.
Use
Comprehensive information about using rkv is available in its online documentation, which you can also generate for local consumption:
cargo doc --open
Build
Build this project as you would build other Rust crates:
cargo build
If you specify the backtrace
feature, backtraces will be enabled in failure
errors. This feature is disabled by default.
Test
Test this project as you would test other Rust crates:
cargo test
The project includes unit and doc tests embedded in the src/
files, integration tests in the tests/
subdirectory, and usage examples in the examples/
subdirectory. To ensure your changes don't break examples, also run them via the run-all-examples.sh shell script:
./run-all-examples.sh
Contribute
Of the various open source archetypes described in A Framework for Purposeful Open Source, the rkv project most closely resembles the Specialty Library, and we welcome contributions. Please report problems or ask questions using this repo's GitHub issue tracker and submit pull requests for code and documentation changes.
rkv relies on the latest rustfmt for code formatting, so please make sure your pull request passes the rustfmt before submitting it for review. See rustfmt's quick start for installation details.
We follow Mozilla's Community Participation Guidelines while contributing to this project.
License
The rkv source code is licensed under the Apache License, Version 2.0, as described in the LICENSE file.