- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for ignore_idle_threads (0.07 seconds)
-
src/test/java/org/codelibs/fess/mylasta/direction/FessConfigTest.java
// Test boolean conversions @Test public void test_booleanConversions() { // Test boolean conversion for ignore idle threads boolean ignoreIdleThreads = fessConfig.isCrawlerHotthreadIgnoreIdleThreads(); assertTrue(ignoreIdleThreads); } // Test pattern matching @Test public void test_patternMatching() { String pattern = fessConfig.getAppEncryptPropertyPattern();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 24.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
String CRAWLER_SYSTEM_MONITOR_INTERVAL = "crawler.system.monitor.interval"; /** The key of the configuration. e.g. true */ String CRAWLER_HOTTHREAD_ignore_idle_threads = "crawler.hotthread.ignore_idle_threads"; /** The key of the configuration. e.g. 500ms */ String CRAWLER_HOTTHREAD_INTERVAL = "crawler.hotthread.interval"; /** The key of the configuration. e.g. 10 */
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 576.9K bytes - Click Count (2) -
src/main/resources/fess_config.properties
crawler.failure.url.status.codes=404 # Interval (seconds) for system monitor during crawling. crawler.system.monitor.interval=60 # Whether to ignore idle threads in hot thread monitoring. crawler.hotthread.ignore_idle_threads=true # Interval for hot thread monitoring (e.g., 500ms). crawler.hotthread.interval=500ms # Number of snapshots for hot thread monitoring. crawler.hotthread.snapshots=10
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 59.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/timer/HotThreadMonitorTarget.java
buf.append("[HOTTHREAD MONITOR] "); final FessConfig fessConfig = ComponentUtil.getFessConfig(); buf.append('{'); final boolean ignoreIdleThreads = Constants.TRUE.equalsIgnoreCase(fessConfig.getCrawlerHotthreadIgnoreIdleThreads()); final TimeValue interval = TimeValue.parseTimeValue(fessConfig.getCrawlerHotthreadInterval(), "crawler.hotthread.interval");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 3.7K bytes - Click Count (0)