Popularity
4.9
Stable
Activity
1.8
Stable
14
3
5
Programming language: Crystal
License: MIT License
Tags:
HTTP
resp-crystal alternatives and similar shards
Based on the "HTTP" category.
Alternatively, view resp-crystal alternatives based on common mentions on social networks and blogs.
-
cryload
Cross-platform HTTP load testing CLI: a modern ab/wrk alternative with machine-readable reports for CI/CD -
http-protection
This library protects against typical web attacks. It was inspired in rack-protection Ruby gem. -
multipart.cr
DISCONTINUED. Adds multipart and multipart/form-data support to the crystal standard library -
ContentDisposition
Crystal shard to create HTTP Content-Disposition headers with proper escaping/encoding of filenames
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
Promo
www.saashub.com
Do you think we are missing an alternative of resp-crystal or a related project?
README
Resp
Lightweight RESP client that can be used for interacting with Redis and Disque servers.
Usage
require "resp"
client = Resp.new("redis://localhost:6379")
client.call("SET", "foo", "42")
client.call("GET", "foo") #=> "42"
Pipelining
You can pipeline commands by using the queue/commit methods.
require "resp"
client = Resp.new("redis://localhost:6379")
client.queue("ECHO", "foo")
client.queue("ECHO", "bar")
client.commit #=> ["foo", "bar"]
Installation
Add this to your application's shard.yml:
dependencies:
resp:
github: soveran/resp-crystal
branch: master