Popularity
4.7
Stable
Activity
0.0
Stable
9
2
5
Programming language: Crystal
Tags:
Framework Components
kemal-redis alternatives and similar shards
Based on the "Framework Components" category.
Alternatively, view kemal-redis alternatives based on common mentions on social networks and blogs.
-
motion.cr
Motion is a framework for building reactive, real-time frontend UI components in your Amber application using pure Crystal that are reusable, testable & encapsulated. -
mochi
Mochi is a authentication shard inspired by devise. Mochi is designed for the Amber framework with support for both Granite & Jennifer ORM's.
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai

Do you think we are missing an alternative of kemal-redis or a related project?
README
kemal-redis
Easily add Redis to your Kemal application.
Installation
Add this to your application's shard.yml
:
dependencies:
kemal-redis:
github: sdogruyol/kemal-redis
Usage
require "kemal"
require "kemal-redis"
redis_connect # With default host and port
# Make sure to yield `env`.
get "/" do |env|
redis.set("foo", "bar")
foo = redis.get("foo")
"Value of foo - #{foo}"
end
You can specify different host and port like below
redis_connect host: "177.11.22.33", port: 8801
Examples
To check more examples of Redis see crystal-redis-example.
Contributing
- Fork it ( https://github.com/sdogruyol/kemal-redis/fork )
- 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 a new Pull Request
Contributors
- sdogruyol Sdogruyol - creator, maintainer