- Sort Score
- Num 10 results
- Language All
Results 1 - 6 of 6 for heartbeat_interval (0.12 seconds)
-
src/main/java/org/codelibs/fess/opensearch/client/CrawlerEngineClient.java
final Builder builder = Settings.builder() .putList("http.hosts", hosts) .put("processors", fessConfig.getCrawlerHttpProcessors()) .put("http.heartbeat_interval", fessConfig.getFesenHeartbeatInterval()); final String username = fessConfig.getFesenUsername(); final String password = fessConfig.getFesenPassword();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 2.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java
Integer value = getSearchEngineHeartbeatIntervalAsInteger(); if (value != null) { return value.longValue(); } value = getAsInteger("elasticsearch.heartbeat_interval"); if (value != null) { return value.longValue(); } return 10000L; }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 92.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
/** The key of the configuration. e.g. */ String search_engine_PASSWORD = "search_engine.password"; /** The key of the configuration. e.g. 10000 */ String search_engine_heartbeat_interval = "search_engine.heartbeat_interval"; /** The key of the configuration. e.g. aes */ String APP_CIPHER_ALGORITHM = "app.cipher.algorithm"; /** The key of the configuration. e.g. ___change__me___ */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
search_engine.username= # Password for authenticating to the search engine. search_engine.password= # Interval (ms) for heartbeat checks to the search engine. search_engine.heartbeat_interval=10000 # Cipher algorithm used for encryption. app.cipher.algorithm=aes # Secret key for encryption (change this value for production). app.cipher.key=___change__me___ # Algorithm for digest calculation.
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/opensearch/client/SearchEngineClient.java
final Builder builder = Settings.builder() .putList("http.hosts", hosts) .put("processors", fessConfig.availableProcessors()) .put("http.heartbeat_interval", fessConfig.getFesenHeartbeatInterval()); final String username = fessConfig.getFesenUsername(); final String password = fessConfig.getFesenPassword();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 138.6K bytes - Click Count (1) -
src/test/java/org/codelibs/fess/mylasta/direction/FessConfigTest.java
// Test numeric conversions @Test public void test_numericConversions() { // Test integer conversion Integer heartbeatInterval = fessConfig.getSearchEngineHeartbeatIntervalAsInteger(); assertNotNull(heartbeatInterval); assertEquals(10000, heartbeatInterval.intValue()); // Test integer conversion for cleanup days int cleanupDays = fessConfig.getDayForCleanup();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)