What perfmon counters are useful for identifying ASP.NET bottlenecks?

妖精的绣舞 提交于 2019-11-26 18:00:45
Aristos

I see that the database is readed also (the orange) and this is seams that one of all pages have delay the rest of pages because of the lock that session make on the pages.

you can read also : Replacing ASP.Net's session entirely

My suggestion is totally remove the session calls and if this is not possible, find an other way to save them somewhere in database by your self.

Actually in my pages I have made all three possible options. 1. I call the page with out session. 2 I have made totally custom session that are values connected to the user cookie, and last 3. I have made threads that are run away from the session and they make calculations on background, when they finish I show the results.

In some cases the calculations are done on iframe that call a page without session and there later I show the results.

In the Pro version, you can use Transaction Traces, which help pinpoint exactly where the issue is happening.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!