Open robinboening opened 5 months ago
The current docs at https://docs.stimulusreflex.com/appendices/deployment.html#use-redis-as-your-cache-store recommend installing redis >= 4.0.
redis >= 4.0
gem "redis", ">= 4.0", require: ["redis", "redis/connection/hiredis"] gem "hiredis"
This allows redis 5.x which doesn't include redis/connection/hiredis anymore and therefore breaks.
redis/connection/hiredis
From what I understand redis-client (redis dependency) works together with a gem called hiredis-client which is included in the redis-client repository on github: https://github.com/redis-rb/redis-client/tree/master/hiredis-client
redis-client
redis
hiredis-client
What is the recommended solution?
The current docs at https://docs.stimulusreflex.com/appendices/deployment.html#use-redis-as-your-cache-store recommend installing
redis >= 4.0
.This allows redis 5.x which doesn't include
redis/connection/hiredis
anymore and therefore breaks.From what I understand
redis-client
(redis
dependency) works together with a gem calledhiredis-client
which is included in theredis-client
repository on github: https://github.com/redis-rb/redis-client/tree/master/hiredis-clientWhat is the recommended solution?