Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for removeDisableIndices (0.14 sec)

  1. src/main/java/org/codelibs/fess/suggest/Suggester.java

     *   <li>{@link #createNextIndex()}: Creates a new index and replaces the current update alias with the new index.</li>
     *   <li>{@link #switchIndex()}: Switches the search alias to the current update index.</li>
     *   <li>{@link #removeDisableIndices()}: Removes disabled indices.</li>
     *   <li>{@link #indexer()}: Creates a new SuggestIndexer for indexing suggestions.</li>
     *   <li>{@link #builder()}: Creates a new SuggesterBuilder for building Suggester instances.</li>
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Thu Aug 07 02:41:28 UTC 2025
    - 20.7K bytes
    - Viewed (3)
  2. src/test/java/org/codelibs/fess/suggest/SuggesterTest.java

                if (index.startsWith(suggester.getIndex())) {
                    count++;
                }
            }
            assertEquals(2, count);
    
            suggester.removeDisableIndices();
            response = suggester.suggest().setSuggestDetail(true).execute().getResponse();
            assertEquals(3, response.getNum());
    
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Thu Aug 07 02:41:28 UTC 2025
    - 37.2K bytes
    - Viewed (0)
Back to top