Sticky sessions (or "session affinity") is a load balancing mechanism in which all requests from a user are routed to the same server for the duration of their session. This allows user state (such as a shopping cart) to be stored locally on the server without the need for synchronization between all servers. This approach simplifies working with session data but reduces scaling flexibility and can lead to uneven server load.