Asp – Determine if asp.net application support load balancing environment

asp.netload balancing

I am new to asp.net, I have been tasked to upgrade the physical architecture to load balancing environment to support the application.

I done some reading the session state should be configure to Out-Process instead of In-Proc to support load balancing.

Is there any other issues I need to take note for asp.net web application to run in the load balanced environment?

Best Answer

if you are going to have your session out of proc, your session objects should be serializable. If you want a quick solution, sticky sessions are an option. You can read about it here

Related Topic