Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for heartbeat_interval (0.1 sec)

  1. 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();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  2. 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 Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 86.5K bytes
    - Viewed (0)
  3. 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.algorism=aes
    # Secret key for encryption (change this value for production).
    app.cipher.key=___change__me___
    # Algorithm for digest calculation.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  4. 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_ALGORISM = "app.cipher.algorism";
    
        /** The key of the configuration. e.g. ___change__me___ */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
  5. 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();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/mylasta/direction/FessConfigTest.java

        }
    
        // Test numeric conversions
        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();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 23.8K bytes
    - Viewed (0)
Back to top