...
Open source methods
- round-robin (default) - iterate equally around each server in a server group
- least_conn - send requests to server with the least number of connections
- ip_hash - using a hash algorithm, select server in a server group based on client's IP address
- hash - the server to which a request is sent is determined from a user-defined key which may be a text, variable, or their combination
...