maxConnectionsPerRoute
maxConnectionsPerRoute is a configuration parameter used by HTTP client connection pools to bound the number of concurrent connections that can be opened to a single route, typically a host and port combination. A route represents a target endpoint; multiple routes can be active at the same time, subject to overall pool limits.
Rationale: Without a per-route limit, a client could exhaust system resources by opening many connections to
Configuration: In most libraries this value is part of the connection pool configuration. It is commonly paired
Impact and tuning: Increasing the per-route limit can reduce latency for clients targeting the same host under