- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for setMaxConnectionsPerRoute (0.26 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
README.md
``` ### Connection Pool Tuning ```java container.singleton("httpClient", HcHttpClient.class, client -> { client.setMaxConnections(200); // Total connections client.setMaxConnectionsPerRoute(20); // Per-host connections client.setConnectionTimeout(30000); // Connection timeout client.setSocketTimeout(60000); // Read timeout }); ``` ### Memory Management ```java
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Sun Aug 31 05:32:52 GMT 2025 - 15.3K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java
} /** * Sets the maximum connections per route. * * @param maxConnectionsPerRoute The maximum connections per route */ public void setMaxConnectionsPerRoute(final Integer maxConnectionsPerRoute) { this.maxConnectionsPerRoute = maxConnectionsPerRoute; } /** * Sets the socket timeout in milliseconds. *Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Sun Nov 23 12:19:14 GMT 2025 - 53.7K bytes - Click Count (0)