signalr

A 1-post collection

How to Load Balance SignalR Without Using Sticky Sessions

By Sean Grimes |  Mar 19, 2019  | signalr, typescript, csharp, featured
SignalR poses some small challenges when running in a load balanced environment. When you have multiple servers then some users will have SignalR connections open to one server and then some users will have SignalR connections open to another. The usual solution is to use a SignalR backplane so that all the servers in your cluster can see every SignalR message that was sent, then forward the message to the appropriate users connected to each server.
Continue Reading...