Difference between session affinity and sticky session?
What is the difference between session affinity and sticky session in context of load balancing servers? Lou Franco I've seen those terms used interchangeably, but there are different ways of implementing it: Send a cookie on the first response and then look for it on subsequent ones. The cookie says which real server to send to. Bad if you have to support cookie-less browsers Partition based on the requester's IP address. Bad if it isn't static or if many come in through the same proxy. If you authenticate users, partition based on user name (it has to be an HTTP supported authentication mode