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
- Host: GitHub
- URL: https://github.com/micheleriva/aika
- Owner: micheleriva
- License: mit
- Created: 2019-04-02T10:04:32.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-08-08T15:18:28.000Z (about 6 years ago)
- Last Synced: 2025-05-08T21:16:33.922Z (5 months ago)
- Topics: database, haskell, in-memory, in-memory-database, key-value, redis
- Language: Haskell
- Homepage:
- Size: 49.8 KB
- Stars: 7
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
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.