Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for setSocketTimeout (0.06 seconds)

  1. README.md

        client.setMaxConnections(200);          // Total connections
        client.setMaxConnectionsPerRoute(20);   // Per-host connections
        client.setConnectionTimeout(30000);     // Connection timeout
        client.setSocketTimeout(60000);         // Read timeout
    });
    ```
    
    ### Memory Management
    
    ```java
    // Configure memory usage
    crawler.crawlerContext.setMaxAccessCount(10000);     // Limit crawled URLs
    Created: Sun Apr 12 03:50:13 GMT 2026
    - Last Modified: Sun Aug 31 05:32:52 GMT 2025
    - 15.3K bytes
    - Click Count (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/Hc4HttpClient.java

            }
            final Integer soTimeoutParam = getInitParameter(SO_TIMEOUT_PROPERTY, soTimeout, Integer.class);
            if (soTimeoutParam != null) {
                requestConfigBuilder.setSocketTimeout(soTimeoutParam);
            }
    
            // AuthSchemeFactory
            final RegistryBuilder<AuthSchemeProvider> authSchemeProviderBuilder = RegistryBuilder.create();
            @SuppressWarnings("unchecked")
    Created: Sun Apr 12 03:50:13 GMT 2026
    - Last Modified: Fri Jan 09 23:46:52 GMT 2026
    - 54.4K bytes
    - Click Count (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/Hc5HttpClient.java

                connectionConfigBuilder.setConnectTimeout(Timeout.ofMilliseconds(connectionTimeoutParam));
            }
            if (soTimeoutParam != null) {
                connectionConfigBuilder.setSocketTimeout(Timeout.ofMilliseconds(soTimeoutParam));
            }
            builder.setDefaultConnectionConfig(connectionConfigBuilder.build());
    
            // SSL
    Created: Sun Apr 12 03:50:13 GMT 2026
    - Last Modified: Sat Jan 31 12:23:29 GMT 2026
    - 62.2K bytes
    - Click Count (0)
Back to Top