7

We have a simple signalr server and client running with the backplane enabled. When I looked in to the IIS worker process I found out in the current requests tab there is always this signalr connect is showing.

enter image description here

When I connect like 100 clients 100 current requests are shown in the woker process view. Shouldn't these be removed after connecting or is this the expected behavior from the signalr?

Janitha Tennakoon
  • 856
  • 11
  • 40

1 Answers1

4

The threads will close or get reused by new clients, its basically a thread pool, you shouldn't need to worry about it. The only time you need worry about how many threads are open is if you only have limited cpu resources, and a low open thread limit set.

Kelso Sharp
  • 972
  • 8
  • 12
  • Please cite a source – The One Oct 08 '21 at 18:45
  • This might not be relevant now, but all of the singalR documentation at the time and its likely still the same, its the nature of the technology. https://learn.microsoft.com/en-us/aspnet/signalr/overview/getting-started/introduction-to-signalr – Kelso Sharp Oct 18 '21 at 17:50