Install Elixir & Redis
brew install elixir
brew install Redis
Start the redis server
redis-server
Start the Elixir application
mix deps.get
iex -S mix
curl -X POST localhost:8880/key/ABC --data "value=123"
curl localhost:8880/key/ABC
demo of maru, a rest api framework using redis key-value store written in elixir
Elixir