views:

235

answers:

1

Scenario I have service written in c#.net.

Now on my production environment I want this service to be on 2 different servers for Loadbalancing or failover of one of the server.

So for instance if one server dies the service keeps running on the other server and users are not affected OR if there is a heavy load on the site users get redirected to different servers.

For users getting on redirected on different servers is not a problem we have the software which can check whether the service is running or not. How to do session management in this case?

How can we achieve this?

A: 

Of course you could always spin your own session management service but I don't think that is what you are looking for.

I have experience using NCache for session management and it works well enough.

Microsoft also has Velocity but I'm not sure it's complete yet.

Cory Charlton