This algorithm will distribute incoming requests to backend servers based on a hash of the client's IP address. This will be very useful for implementing sticky sessions later on.
- The algorithm distributes requests based on the hashed value of the client’s IP address.
- Requests from the same IP address should be routed to the same server everytime.
This algorithm will distribute incoming requests to backend servers based on a hash of the client's IP address. This will be very useful for implementing sticky sessions later on.