You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/appendices/deployment.md
+2-6
Original file line number
Diff line number
Diff line change
@@ -16,12 +16,11 @@ Instead, we make the best of things by enabling caching in the development envir
16
16
17
17
### Use Redis as your cache store
18
18
19
-
We want to change the cache store to make use of Redis. First we should enable the `redis` gem, as well as `hiredis`, a native wrapper which is much faster than the Ruby gem alone.
19
+
We want to change the cache store to make use of Redis. First we should enable the `redis` gem.
Copy file name to clipboardExpand all lines: docs/guide/persistence.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -187,7 +187,7 @@ The Reflex class makes use of the `session.id`, the `data-id` attributes from in
187
187
188
188
If Redis is your Rails cache store, you're already one step ahead!
189
189
190
-
Depending on your application and the kind of data you're working with, [calling the Redis engine directly](/appendices/deployment#use-redis-as-your-cache-store) (through the `redis` gem, in tandem with the `hiredis` gem for optimal performance) from your Reflex methods allows you to work with the full suite of data structure manipulation tools that are available in response to the state change operations your users initiate.
190
+
Depending on your application and the kind of data you're working with, [calling the Redis engine directly](/appendices/deployment#use-redis-as-your-cache-store) (through the `redis` gem) from your Reflex methods allows you to work with the full suite of data structure manipulation tools that are available in response to the state change operations your users initiate.
191
191
192
192
Using Redis is beyond the scope of this document, but an excellent starting point is Jesus Castello's excellent "[How to Use the Redis Database in Ruby](https://www.rubyguides.com/2019/04/ruby-redis)".
0 commit comments