While using signalr, will there be any connection limits on IIS

前端 未结 3 857
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-12-12 15:15

I have been looking at SignalR from last few days. Using this I have created an Admin Dashboard to get realtime information about a database table. Basically this table gets

3条回答
  •  执念已碎
    2020-12-12 15:26

    You should review the Performance Section of the SignalR Wiki on GitHub. This provides some really good guidance for the following:

    • IIS Configuration - Max Concurrent Requests Per Application
    • ASP.NET Configuration - Max Concurrent Requests & Request Queue Limits

    Additionally, it states the key Peformance Counters to monitor when performing load testing of your application. Which IMO you should do to truly have an understanding of how your application is going to perform and make adjustments as necessary for your specific scenario.

    Finally, there is a link to Crank the recommended tool for generating client load with SignalR.

    Update: Link to Crank is now current.

提交回复
热议问题