-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sentinel Example #52
Comments
`vcl 4.1; import redis; backend default { sub vcl_init {
} sub vcl_recv {
} sub vcl_synth { We could not able to set key, can you help in this? |
Hi @rsidhaarth! It looks like you're assuming using Sentinel you can auto-discover master and slave instances, but that's not how the VMOD works (see #38). The VMOD integrates with Redis Sentinel it order to find the new master when a failover occurs, but that's all. The list of Redis Server instances needs to be explicitly specified. I hope this helps! 🙂 |
Hi,
Is it possible for you to add sentinel example in readme as I could not able to get it work.
Thanks
The text was updated successfully, but these errors were encountered: