https://github.com/nullndr/ekvbucket
A key-value store application written in Elixir
https://github.com/nullndr/ekvbucket
elixir elixir-lang key-value-store
Last synced: 11 months ago
JSON representation
A key-value store application written in Elixir
- Host: GitHub
- URL: https://github.com/nullndr/ekvbucket
- Owner: nullndr
- Created: 2022-06-28T18:07:26.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-01T07:57:38.000Z (almost 4 years ago)
- Last Synced: 2025-06-19T01:37:13.452Z (12 months ago)
- Topics: elixir, elixir-lang, key-value-store
- Language: Elixir
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Key - Value Store Application in Elixir
This is an [Elixir](https://elixir-lang.org/getting-started/introduction.html) application that works as a distributed key-value store.
> ⚠️ This is just a little application for me to learn Elixir.
### Development
In order to compile the code, run:
```sh
$ mix compile
```
Once the code has been compiled inside the `_build` folder, run:
```sh
$ iex -S mix
```
trying out the changes from an `iex` session.
### Testing
Mix comes with a testing framework called [ElixirUnit](https://elixir-lang.org/getting-started/introduction.html#elixirunit).
Write the tests in the [`test`](./test/) folder, with `.exs` suffix.
To execute the tests, run:
```sh
$ mix test
```