Debugging and diagnosing lock convoying problems in .NET

后端 未结 3 2063
滥情空心
滥情空心 2021-02-04 19:51

I am looking into performance issues of a large C#/.NET 3.5 system that exhibits performance degradation as the number of users making requests scales up to 40-50 distinct user

3条回答
  •  梦毁少年i
    2021-02-04 19:59

    A good place to start is by having a look at the Lock and Thread performance counters. Out of interesting what exactly are you locking for in your Web app? Locking in most ASP.NET applications isn't common.

提交回复
热议问题