- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for setMaxThreadCheckCount (0.12 seconds)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/CrawlerContext.java
return maxThreadCheckCount; } /** * Sets the maximum thread check count. * @param maxThreadCheckCount The maximum thread check count. */ public void setMaxThreadCheckCount(final int maxThreadCheckCount) { this.maxThreadCheckCount = maxThreadCheckCount; } /** * Returns the maximum depth. * @return The maximum depth. */Created: Sun Apr 12 03:50:13 GMT 2026 - Last Modified: Wed Dec 31 09:07:38 GMT 2025 - 9K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/Crawler.java
crawlerContext.numOfThread = numOfThread; } /** * Sets the maximum thread check count. * @param maxThreadCheckCount The maximum thread check count. */ public void setMaxThreadCheckCount(final int maxThreadCheckCount) { crawlerContext.maxThreadCheckCount = maxThreadCheckCount; } /** * Sets the maximum depth. * @param maxDepth The maximum depth. */Created: Sun Apr 12 03:50:13 GMT 2026 - Last Modified: Mon Nov 24 03:59:47 GMT 2025 - 17K bytes - Click Count (0) -
fess-crawler-lasta/src/test/java/org/codelibs/fess/crawler/CrawlerTest.java
file.delete(); file.mkdirs(); file.deleteOnExit(); fileTransformer.setPath(file.getAbsolutePath()); crawler.addUrl(url); crawler.crawlerContext.setMaxThreadCheckCount(3); crawler.crawlerContext.setMaxAccessCount(maxCount); crawler.crawlerContext.setNumOfThread(numOfThread); crawler.urlFilter.addInclude(url + ".*");
Created: Sun Apr 12 03:50:13 GMT 2026 - Last Modified: Thu Jan 15 01:11:43 GMT 2026 - 13.1K bytes - Click Count (0) -
README.md
## Performance Tuning ### Thread Configuration ```java // Optimize thread pool settings crawler.crawlerContext.setNumOfThread(20); // Number of crawler threads crawler.crawlerContext.setMaxThreadCheckCount(50); // Thread monitoring frequency ``` ### Connection Pool Tuning ```java container.singleton("httpClient", HcHttpClient.class, client -> {
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)