Speed up Edit Mode: Set EnableSessionState to false

Process requests simultaneously in parallel and gain some speed.

This post was initially posted on Optimizely World.

Did you now that if session state is enabled, the default ASP.NET setting, all requests from the same user session get queued and processed one after another? Disabling session state will make your server process all those requests simultaneously.

Of course this makes the framed Edit Mode load a bit faster since your non session page template will be processed without having to wait in line with other requests.

Another common situation is AJAX requests being sent to other Epi pages "on load". If your server can finish these at the same time you most likely will have saved quite a few milliseconds for your users.

A third scenario that most of you have seen is when you have built a Web Form that interacts with a remote HTTP service or doing something else that always or occasionally takes a lot of time to complete. You (or even worse, your user or editor) keep waiting for the page to load but then give up and try to navigate to another page. This request of course gets put in your session request queue and the only thing besides waiting that will get you to browse pages on your web site again is to restart your browser and get a new session.

Conclusion: Disabling session state for your Episerver template ASPX files will most likely give you a big performance boost and make long running requests easier to escape.

It's really easy too, just set the property in the Page directive like this:

<%@ Page Language="C#" EnableSessionState="false" %>

You can set this setting in Web.config too but for Episerver sites I don't recommend this since it would need to be put in the root <system.webServer> element and then reset in child location elements where session state status might interfere with base Episerver functionality.

In your web site's web forms you should have a really good reason to use Session for anything so for most projects this can be done without hassle.

Published and tagged with these categories: Episerver, ASP.NET, MVC, Development