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?

有帮助吗?

解决方案

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

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top