vote up 0 vote down star

What is the best way to maintain a user's session state in an ASP.NET MVC app hosted on a web farm?

Out application currently uses the standard ASP.NET session on IIS 6.0 but we want to move the app to a web farm environment. I have read that we can use SQL Server session state for our application but I just want to know if anybody was using something else and why!

flag

78% accept rate

3 Answers

vote up 2 vote down check

One way would be to use the Velocity distributed cache.

link|flag
1  
Sadly it's not released yet, it is just in CTP. But I agree, when Velocity is released, it should become the premier way of distributing session state across Windows based HTTP servers. – jesper.mortensen Aug 12 at 22:20
vote up 0 vote down

As discussed in one of the StackOverflow podcasts: usually session state is very minimal - a few keys here and there - and works well to simply store this in a central database.

link|flag
vote up 0 vote down

You could try storing your sessions in memcache. Should be both fast and scalable. It does require some memory though.

link|flag

Your Answer

Get an OpenID
or

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