Pregunta

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?

¿Fue útil?

Solución

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

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top