Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  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.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)
Back to top