Riedi
HA Distributed Key Value Engine
Installation
Add this line to your application's Gemfile:
gem 'riedi'
And then execute:
$ bundle
Or install it yourself as:
$ gem install riedi
Usage
riedi-server
Get server status
curl localhost:8080/status
Set a value
curl localhost:8080/store/some_key -XPOST -d 'value=some_value'
Get a value
curl localhost:8080/store/some_key
Delete a value
curl localhost:8080/store/some_key -XDELETE
List all keys
curl localhost:8080/keys
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request