-
-
Notifications
You must be signed in to change notification settings - Fork 71
Open
Description
Currently, we have 2 separate and differently configured Redis uses:
- via the
NamespacedEnvCachecache store (which uses connection pools under the hood, properly handles thread safety, etc). Calling code usually looks likeRails.cache.*; - directly in thread-specific
RequestContext(with no pooling, QoL methods, etc). Calling code looks likeRequestContext.redis.*;
We should fully switch to the former version:
- for consistency;
- to remove a redundant connection;
- to reduce maintenance burden;
- to enable connection pooling where we currently use one per thread (the latter use);
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels