开发者

How to implement a Windows Service to manage Session state?

I'm working on an ASP.NET MVC web application that will be deployed across multiple load-balanced servers. With this setup, a user might have one request served by server A and the next request will be served by ServerB or ServerC.

We don't want to store Session Data in the database, as we're trying to minimise database hits where ever possible. As such, we need to have the HttpSession managed and stored on another server.

My un开发者_JAVA百科derstanding is that this is possible by using a Windows Service that will manage this for me, but I'm unfamiliar with how to implement this. Can somebody point me at some good documentation on how to do this? Or any pitfalls or other points to take into consideration? Thanks


You need to dedicate a machine that will host the Windows NT service and which must have .NET installed (well you could use one of the web servers as state server but IMHO this would be a very bad idea):

net start aspstate

And then instruct your application to use this server:

<system.web>
  <sessionstate 
      mode="stateserver"
      cookieless="false" 
      timeout="20" 
      server="127.0.0.1" 
      port="42424" 
  />
</system.web>

where of course you would replace 127.0.0.1 with the IP address of the server hosting the NT service.

Note1: don't forget to decorate the objects you intend to store into session with the [Serializable] attribute.

Note2: this is a good solution in a load balanced environment but if you are looking for a real failover clustering you should use SQL server.

You may read more details about ASP.NET session state on MSDN.


As usual, Peter gives this issue good coverage...

http://www.eggheadcafe.com/articles/20021016.asp


Another alternative you may want to consider is Memcached Providers - it allows you to store session state in a memcached instance; optionally using SQL Server as a fallback. The best of both worlds, IMHO.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜