Debugging and diagnosing lock convoying problems in .NET

后端 未结 3 2103
滥情空心
滥情空心 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条回答
  •  面向向阳花
    2021-02-04 20:12

    I can't provide much insight into the diagnostics, but if you find proof to back up your assumption then you might be interested in System.Threading.ReaderWriterLockSlim which allows for concurrent reads, but prevents concurrent writes.

提交回复
热议问题