I read "How does SignalR.Redis work under the hood?" and the latest documentation on SignalR with Redis Running on a Windows Azure VM, however I would just like some clarification:
A client connects to a load balancer which balances the request to two SignalR application instances. A Redis server is connected between the two instances which ensures the requesting client receives the correct response through the load balancer.
So far is this correct?
So if I'm understanding this correctly, if we add a third SignalR application instance, this also simply connects to the Redis server (a second Redis server between app2 and app3 is not required).
What about Redis server redundancy? What do the SignalR instances point to if using a clustered Redis environment with say, three Sentinels running?