How can I connect to Redis sentinel using the StackExchange.Redis ConnectionMultiplexer instead of the BookSleeve ConnectionUtils.
I am currently using BookSleeve:
ConnectionUtils.Connect("127.0.0.1:26379,serviceName=mymaster");
I tried to replace it with StackExchange.Redis:
ConnectionMultiplexer.Connect("127.0.0.1:26379,serviceName=mymaster");
but it's not working.
Any ideas?
It's not a real answer but I hope to help you, I use REDIS Sentinel with ServiceStack.Redis, I didn't found a solution with the free StackExchange.Redis to use Sentinel. This is my code with ServiceStack: