Prevent Server Failures if Redis Connection Fails #2700
Answered
by
EmrysMyrddin
daryldeogracias
asked this question in
Q&A
|
How can we configure |
Answered by
EmrysMyrddin
Sep 24, 2025
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! |
0 replies
Answer selected by
daryldeogracias
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to 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!