Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for indexTimeout (0.9 sec)

  1. src/main/java/org/codelibs/fess/suggest/settings/SuggestSettingsBuilder.java

            return this;
        }
    
        /**
         * Sets the index timeout.
         * @param timeout The index timeout.
         * @return This builder instance.
         */
        public SuggestSettingsBuilder indexTimeout(final String timeout) {
            timeoutSettings.setIndexTimeout(timeout);
            return this;
        }
    
        /**
         * Sets the bulk timeout.
         * @param timeout The bulk timeout.
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 17 14:10:16 UTC 2025
    - 4K bytes
    - Viewed (0)
  2. CLAUDE.md

    // Default values
    MAX_READING_NUM = 10
    PREFIX_MATCH_WEIGHT = 2.0f
    EXPECTED_INDEX_COUNT = 1
    
    // Default timeouts
    searchTimeout: 15s
    indexTimeout: 1m
    bulkTimeout: 1m
    ```
    
    ### Common Workflows
    
    **Index Lifecycle:**
    ```java
    suggester.createIndexIfNothing();      // Initial setup
    suggester.createNextIndex();            // Create new index
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 8.9K bytes
    - Viewed (0)
Back to top