If you were an asynchronous javascript call in an Asp.Net MVC environment, and you had to work with a round-robin style of load balancer, would you be able to find your way home?

edit: adding clarification ..using in-memory session state.

link|improve this question

73% accept rate
It sounds like your question is, is an ajax http exchange any different from any other, in the way that it responds to a POST or GET? – le dorfier Dec 16 '08 at 0:17
feedback

2 Answers

up vote 3 down vote accepted

I'd configure my load balancer with stickey sessions to avoid this problem.

With sticky sessions, you'll be directed to the same server over and over again during the session.

link|improve this answer
feedback

If your application is stateless, it shouldn't matter. Whether a standard HTTP request or Ajax based request to your server, if your application does not rely on server side state (such as a session), then it shouldn't matter if you hit different servers on subsequent requests.

Edit - given the question update mentioning you use in memory session state, then your approach to solving the issue for standard page requests will implicitly solve for Ajax. You have essentially two ways to go - sticky sessions through the load balancer so the same user gets the same server, or sharing the session state between your servers through a caching/storage mechanism.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.