aymr 0.0.1

Plug and play various KV databases and access them over the network.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! # Aymr backends
//! 
//! This mod contains various backends that can be used with Aymr.
//! 
//! Each mod inside contains the necessary bindings for each backend.
//! Currently the supported backends are:
//! 
//! - [BTreeMap](https://doc.rust-lang.org/std/collections/struct.BTreeMap.html)
//! - [HashMap](https://doc.rust-lang.org/std/collections/struct.HashMap.html)

pub mod btreemap;
pub mod hashmap;
pub mod sled_pre;