InterviewSolution
| 1. |
What Are The Issues With Sticky Session? |
|
Answer» There are few ISSUES that you may face with this approach The client browser may not support cookies, and your load balancer will not be able to identify if a request belongs to a session. This may CAUSE strange BEHAVIOR for the users who use no cookie based browsers. In case ONE of the machine fails or goes down, the user information (SERVED by that machine) will be lost and there will be no way to recover user session. There are few issues that you may face with this approach The client browser may not support cookies, and your load balancer will not be able to identify if a request belongs to a session. This may cause strange behavior for the users who use no cookie based browsers. In case one of the machine fails or goes down, the user information (served by that machine) will be lost and there will be no way to recover user session. |
|