Sha256: e74dd2a068f8764d6f2a6d8d6b81199f7965a441cf1e1f05a8305ceb46d7fc34

Contents?: true

Size: 770 Bytes

Versions: 1

Compression:

Stored size: 770 Bytes

Contents

# 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

1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
riedi-0.0.1 README.md