- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for heartbeat_interval (0.1 sec)
-
src/main/java/org/codelibs/fess/es/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();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.3K bytes - Viewed (0) -
src/main/resources/fess_config.properties
domain.title = Fess # Search Engine search_engine.type=default search_engine.http.url=http://localhost:9201 search_engine.http.ssl.certificate_authorities= search_engine.username= search_engine.password= search_engine.heartbeat_interval=10000 # Cryptographer app.cipher.algorism=aes app.cipher.key=___change__me___ app.digest.algorism=sha256 app.encrypt.property.pattern=.*password|.*key|.*token|.*secret app.extension.names=
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Tue Oct 01 14:13:38 UTC 2024 - 30.9K bytes - Viewed (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; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 01:54:15 UTC 2024 - 87.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/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();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sun Oct 20 02:08:03 UTC 2024 - 86.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
/** * Get the value for the key 'search_engine.heartbeat_interval'. <br> * The value is, e.g. 10000 <br> * @return The value of found property. (NotNull: if not found, exception but basically no way) */ String getSearchEngineHeartbeatInterval(); /** * Get the value for the key 'search_engine.heartbeat_interval' as {@link Integer}. <br> * The value is, e.g. 10000 <br>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 468.5K bytes - Viewed (1)