Prevent Server Failures if Redis Connection Fails #2700
-
How can we configure |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
This is not something that exists yet. But you can create your own cache implementation (the interface is small and straightforward). This way you would have full control of how you want to handle redis failure. You could make an implementation that forwards calls to Redis cache implementation, and falls back to in-memory cache as you which. If you want to, you can even start a PR :-) If you need help we are here to guide you! |
Beta Was this translation helpful? Give feedback.
This is not something that exists yet. But you can create your own cache implementation (the interface is small and straightforward). This way you would have full control of how you want to handle redis failure. You could make an implementation that forwards calls to Redis cache implementation, and falls back to in-memory cache as you which.
If you want to, you can even start a PR :-) If you need help we are here to guide you!