#db #database-access #lib #kv-db #networking #api-key

aymr

Plug and play various KV databases and access them over the network

2 releases

0.0.1 Mar 26, 2024
0.0.0 Mar 1, 2024

#15 in #kv-db

Download history 113/week @ 2024-02-27 12/week @ 2024-03-05 6/week @ 2024-03-12 97/week @ 2024-03-26

98 downloads per month

GPL-2.0-or-later

24KB
472 lines

aymr

Aymr - Database abstraction library for hot-swapping KV databases

Aymr is a work in progress! It cannot be used in production (for now!)

Aymr is a wrapper library for simply switching between multiple KV-databases, as well as accessing them over a network.

The main goal of this project is to unify multiple different KV DB APIs under a single common API. This idea came about when migrating from sled 0.34 to 1.0-alpha. Both of them had the same underlying functionality, but unfortunately slightly different APIs. Becasue of this, the idea of an intermediary common API unifiying them was born.

The statement that most embedded KV databases function identically, with different APIs being the key difference with how developers interact with them generally holds true. And thus Aymr was spun into it's own project to support as many embedded DBs as it makes sense to support.

It's important to note there's a lot of nuance between different KV databases, and that Aymr will never be able to capture all of their various quirks and semantics under a single API.

Use

Aymr is a rust library and can be imported as such. In order to select the database you want to use, please use the appropriate feature flag. For now we support the following:

Because database configs have little in common with each other, the config for every Aymr Db will be different. Please consult the Aymr docs for more info in how to set up and run each DB.

Examples

Examples for using Aymr can be found under the /examples directory. You can use cargo to see Aymr in action:

cargo run --example basic_db_usage

Dependencies

~0.6–1.3MB
~17K SLoC