An open API service indexing awesome lists of open source software.

https://github.com/micheleriva/aika

⛈ In-memory key-value multithreaded database
https://github.com/micheleriva/aika

database haskell in-memory in-memory-database key-value redis

Last synced: 5 months ago
JSON representation

⛈ In-memory key-value multithreaded database

Awesome Lists containing this project

README

          

**Aika** is a simple and high performance key-value in-memory database.

You can test it using **redis-cli**:

```sh
sh redis-cli -p 9919
127.0.0.1:9919> set name John
127.0.0.1:9919> get name "John"
```

It's just a research project, not ready for production.

# Installation

You can build your own **Aika** version by cloning the repository and using Haskell **stack**:

```sh
git clone git@github.com:micheleriva/aika.git && cd aika
stack build && stack exec aika
```

# License
Aika is [MIT](/LICENSE.md) licensed.