I am working on a MVC application using asp.net which contains 4 portion which need to be updated in real-time.
I started this with having different hub classes in signalR. But it turns out that signalR is making 4 different connection one for each portion to support this which is increasing the load over server and sometime it is not at all possible to have more than 2 connection.
Curious to know if there exist any way by which I can handle using only one connection.
In short,
One application -> 4 signalR portion need to be handle by 1 signalR connection.