vote up 6 vote down star
4

Recommended by the ASP.NET team to use cache instead of session, we stopped using session from working with the WebForm model the last few years. So we normally have the session turned off in the web.config

<sessionState mode="Off" />

But, now when I'm testing out a ASP.NET MVC application with this setting it throw an error in class SessionStateTempDataProvider inside the mvc framework, it asked me to turn on session state, I did and it worked. Looking at the source it uses session

Dictionary<string, object> tempDataDictionary = httpContext.Session[TempDataSessionStateKey] as Dictionary<string, object>; // line 20 in SessionStateTempDataProvider.cs

So, why would they use session here? What am I missing?

Thanks,

Ray.

========================================================

Edit Sorry didn't mean for this post to debate on session vs. cache, but rather in the context of the ASP.NET MVC, I was just wondering why session is used here. In this Scott Watermasysk blog post he mentioned on turning off session too as a good practice, so I'm just wondering do I have to turn it on to use MVC from here on?

flag

31% accept rate
Could you provide a link to where they say "use cache instead of sessions" , cause, they are not really meant for the same thing? – Filip Ekberg Dec 22 '08 at 19:44
If I remember correctly I read it in the September 2005 issue of the MSDN magazine. Maybe I should word it better, but we just don't use session altogether. – ray247 Dec 22 '08 at 19:48
He said: "Tip: Disable session state when not in use.", it's rare that sessions arent used in an authenticated area. – Filip Ekberg Dec 22 '08 at 20:04

3 Answers

vote up 7 vote down check

Session is used for the TempData store. TempData is a highly limited form of session state which will last only until the next request from a certain user. The purpose of TempData is to store data, then do a redirect, and have the stored data be available to the action to which you just redirected.

Using Session for the TempData store means that any distributed caching system which already handles Session will work for TempData. Avoiding using Session directly when TempData will do has a couple of advantages. One is that you don't have to clean up the Session yourself; TempData will "expire" on its own.

link|flag
How does this work in a round robin web farm configuration? Is there a way to turn off Session State/TempData in MVC? – Charles Conway Apr 30 at 20:03
It works the same way as session always works on a server farm. This is documented on MSDN. The best way is to use a distributed cache, but you can also use "sticky sessions." Regarding turning off session, again, it's just like any other ASP.NET application. See MSDN. Then just don't use TempData. That said, doing so is like curing acne via beheading. – Craig Stuntz Apr 30 at 21:02
1  
Session state can be disabled, by disabling in the web.config and implementing the ITempDataProvider interface. – Charles Conway May 19 at 1:09
@Craig Damn you. Just wrote a question and found here an answer when checked once more for duplicates. Wasted ~15 minutes... xD – Arnis L. Jun 27 at 8:15
how or when this session will get cleared..? – santose Nov 19 at 11:17
show 1 more comment
vote up 1 vote down

Hmm... May be you've read about persisting of the heavy objects or relatively rarely accessed objects - it's definitely better to put them into cache, but for light objects or for data that is required at every request there is no better technique than put them into Session.

Sessions are not evil if you are using them correctly.

link|flag
vote up 1 vote down

Recommended by the ASP.NET team to use cache instead of session

@ray247, could you provide a reference for this? Session and Cache are different by nature and should be used depending on application requirements. For example storing user specific data into the cache could lead to undesired behavior. Of course if you really want to avoid using session you could provide your own implementation of the ITempDataProvider interface.

link|flag
see my prev comment – ray247 Dec 22 '08 at 20:00
btw, why would stoing user specific data into cache could lead to undesired behavior? If you got the cache key correctly for each user, I don't see how it's a problem. – ray247 Dec 22 '08 at 20:03
Because the cache is by definition volatile. There are some situations outside your control such as memory pressure in which the cache could get invalidated and thus loosing all session data. – Darin Dimitrov Dec 22 '08 at 20:23

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.