resp.cr

Lightweight RESP (Redis protocol) server

RESP

Build Status Dependency Status devDependency Status

Lightweight RESP server and parser written in Crystal. It can be used to implement a Redis clone or a Redis load balancer, for exemple.

Installation

Add this to your application's shard.yml:

dependencies:
  resp:
    github: hugoabonizio/resp.cr

Usage

require "resp"
server = RESP::Server.new
server.listen do |conn|
  # Returns the command followed by a list of arguments
  operation, args = conn.parse
  puts "op: #{operation}, args: #{args}"
end

Contributing

  1. Fork it ( https://github.com/hugoabonizio/resp/fork )
  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 a new Pull Request

Contributors

Repository

resp.cr

Owner
Statistic
  • 2
  • 2
  • 0
  • 0
  • 1
  • almost 7 years ago
  • May 9, 2017
License

MIT License

Links
Synced at

Sun, 19 May 2024 02:40:45 GMT

Languages