Reputation: 533
I have a project that's working but it needs to be scaled up to multiple servers. Management is considering default IIS load balancing (http://technet.microsoft.com/en-us/library/jj129389.aspx)
Does this load balancer support sticky session (couldn't find it in documentation), and what are the ways to avoid issues with a project that heavily relies on session to store user data?
Upvotes: 2
Views: 8934
Reputation: 2629
You can store your sessionstate in your database. This way it can be used acros different serves
Here is an msdn article on this topic: http://support.microsoft.com/kb/317604
and another one i found: http://www.developer.com/db/article.php/3595766/Storing-Session-State-in-a-SQL-Server-Database.htm
Upvotes: 2