Currently SignalR.Redis is using Booksleeve.
However, SignalR.Redis has now migrated to StackExchange.Redis instead of Booksleave in the signalR.Redis (2.2 Dev Branch).
We can still specify a single Redis server using the same code after upgrading to 2.2:
GlobalHost.DependencyResolver.UseRedis("localhost", 6379, string.Empty, "myApp");
However, I am now wondering how I can use the ConnectionMultiplexer (available in StackExchange.Redis) to specify multiple servers with SignalR.Redis (instead of specifying just one single server).
The answer here: Using SignalR with Redis messagebus failover using BookSleeve's ConnectionUtils.Connect() has taken me in the right direction, however I am confused as to how I implement it.
Any help is very much appreciated.