Enum LoadBalancingStrategy

Enum Documentation

enum class LoadBalancingStrategy

All available load-balancing strategies.

Values:

enumerator ROUND_ROBIN

Assign service servers sequentially according to the order of requests.

enumerator LESS_REQUESTS

Select the service server with the fewest requests.

enumerator LESS_RESPONSE_TIME

Select the service server with the shortest average response time.