All Projects → honza → Redish

honza / Redish

Licence: other
A multi-threaded, TCP, key-value store inspired by Redis implemented in Haskell.

Programming Languages

haskell
3896 projects

Redish

A multi-threaded, TCP, key-value store inspired by Redis implemented in Haskell.

Note: This is a learning exercise.

You can read the introductory blog post.

Building

$ git clone git://github.com/honza/redish.git
$ cd redish
$ stack build
$ stack exec Redish

Protocol

Redish implements the Redis protocol. It currently only supports the get and set operations.

Example

$ redis-cli -p 7777
127.0.0.1:7777> set name honza
OK
127.0.0.1:7777> get name
"honza"

License

BSD, short and sweet.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].