Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

load-balancing session usage

Status
Not open for further replies.

darylbewise

Programmer
Joined
Jan 5, 2009
Messages
16
Location
GB
I am in the process of moving from a single server solution to a load balancing solution. Once of the websites that will be located on the server makes use of asp.net in-process sessions.

I am looking for peoples opinion on the best way to go about making the required alterations to how the server, as in-process sessions will not work with a multi server configuration. (i.e. session value will altered depending on which server the user is directed to)

I have looking into implementing SQL server session, however the two servers in the configuration all session values would be redirected to the one main database. (which is not ideal)

Is there any way of actually removing the use of sessions all together? i.e. is there any way of storing values (that will be saved between pages) without using session (or cookies)?
Thanks in advance
 
(which is not ideal)
Why is it not ideal?
there any way of storing values (that will be saved between pages) without using session (or cookies)?
Nothing other than saving session state in the db.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top