Automatically diagnose IIS and ASP.NET website hangs
blog.leansentry.com
Automatically diagnose IIS and ASP.NET website hangs
1–10 of 14 posts
Re: Automatically diagnose IIS and ASP.NET website hangs
#2Re: Automatically diagnose IIS and ASP.NET website hangs
#3Re: Automatically diagnose IIS and ASP.NET website hangs
#4This is pretty awesome for some types of hangs. I would bet most hangs developers experience are because of locking on SessionState. IReadOnlySessionState is your friend.
That's certainly a good one! One of the things we'll do to help resolve the hang is to identify where blocking is happening. This will pinpoint the session state module in AcquireRequestState as the culprit.
Although, I also have to say, IReadOnlySessionState wont help you a whole lot in a high volume site because the SessionStateModule will still connect to SQL server to keep the session alive in ReleaseRequestState. So, best advice I would give is to use the new AppFabric Cache based session state or go stateless.
Best, Mike
Re: Automatically diagnose IIS and ASP.NET website hangs
#5This is pretty awesome for some types of hangs. I would bet most hangs developers experience are because of locking on SessionState. IReadOnlySessionState is your friend.
http://darrenkopp.com/posts/2013/04/10/Playing-with-fire-Opt...
Re: Automatically diagnose IIS and ASP.NET website hangs
#6Re: Automatically diagnose IIS and ASP.NET website hangs
#7Re: Automatically diagnose IIS and ASP.NET website hangs
#8Whats this? Something related to .NET on HN front page? I must be dreaming...
People on HN don't often talk about it, but it does happen, and apparently quite a bit judging by our users :)