Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getIndexReindexRequestsPerSecond (0.15 sec)

  1. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

        }
    
        protected String getReindexRequestsPerSecound(final FessConfig fessConfig) {
            if (StringUtil.isBlank(fessConfig.getIndexReindexRequestsPerSecond())) {
                return null;
            }
            final String value = fessConfig.getIndexReindexRequestsPerSecond();
            if ("adaptive".equalsIgnoreCase(value)) {
                if (fessConfig.availableProcessors() >= 4) {
                    return null;
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sun Oct 20 02:08:03 UTC 2024
    - 86.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * The value is, e.g. adaptive <br>
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getIndexReindexRequestsPerSecond();
    
        /**
         * Get the value for the key 'index.reindex.refresh'. <br>
         * The value is, e.g. false <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)
Back to top