Complete the code to identify the component responsible for maintaining sticky sessions.
The [1] ensures that a user's requests are always routed to the same server instance.
The load balancer manages sticky sessions by routing requests from the same user to the same server.
Complete the sentence to explain how sticky sessions are typically implemented.
Sticky sessions are often implemented by using [1] to track user sessions on the load balancer.IP hashing is a common method where the load balancer uses the user's IP to route requests consistently.
Fix the error in the explanation about sticky sessions.
Sticky sessions mean that the [1] stores all user session data locally.Sticky sessions mean the server instance keeps the session data, not the load balancer.
Fill both blanks to complete the sticky session mechanism description.
The load balancer uses [1] to identify the user and [2] to route requests to the correct server.
Cookies store the session ID, which the load balancer uses to route requests to the right server.
Fill all three blanks to complete the sticky session flow.
User sends a request with [1]; the [2] reads it and uses the [3] to forward the request to the same server.
The session cookie contains the session ID; the load balancer reads it and routes the request accordingly.