blob: 0e5a3e6d67296563f5dbb3cd4792b3aa0e89c48e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
## Examples of how to use rkv
All examples can be executed with:
```
cargo run --example $name
```
* [`simple-store`](simple-store.rs) - a simple key/value store that showcases the basic usage of rkv.
* [`iterator`](iterator.rs) - a demo that showcases the basic usage of iterators in rkv.
|