- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for Hc5HttpClient (1.5 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
CLAUDE.md
### HTTP Client Architecture ``` SwitchableHttpClient (extends FaultTolerantClient) ├── Hc5HttpClient (default) - Apache HttpComponents 5.x └── Hc4HttpClient (fallback) - Apache HttpComponents 4.x HcHttpClient (abstract base class) ├── Hc4HttpClient └── Hc5HttpClient ``` Switch via system property: `-Dfess.crawler.http.client=hc4` or `hc5` (default)Created: Sun Apr 12 03:50:13 GMT 2026 - Last Modified: Thu Mar 12 03:39:20 GMT 2026 - 8.1K bytes - Click Count (0) -
fess-crawler-lasta/src/main/resources/crawler/client.xml
<include path="crawler/contentlength.xml" /> <include path="crawler/mimetype.xml" /> <!-- HC5 (Default) --> <component name="internalHttpClient" class="org.codelibs.fess.crawler.client.http.Hc5HttpClient" instance="prototype"> <property name="connectionTimeout">15000</property> <property name="soTimeout">30000</property> </component> <!-- HC4 (Alternative - for backward compatibility) -->
Created: Sun Apr 12 03:50:13 GMT 2026 - Last Modified: Thu Jan 08 04:17:06 GMT 2026 - 3.7K bytes - Click Count (0)