- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for createNextIndex (0.05 sec)
-
src/main/java/org/codelibs/fess/suggest/Suggester.java
* <li>{@link #shutdown()}: Shuts down the thread pool.</li> * <li>{@link #createIndexIfNothing()}: Creates a new index if no index exists.</li> * <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>
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 20.7K bytes - Viewed (3) -
src/main/java/org/codelibs/fess/exec/SuggestCreator.java
return 0; } final SuggestHelper suggestHelper = ComponentUtil.getSuggestHelper(); logger.info("Creating new suggest index."); suggestHelper.suggester().createNextIndex(); logger.info("Storing all bad words."); suggestHelper.storeAllBadWords(true); logger.info("Storing all elevate words."); suggestHelper.storeAllElevateWords(true);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 11K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/SuggesterTest.java
SuggestResponse response2 = suggester.suggest().setSuggestDetail(true).execute().getResponse(); assertEquals(2, response2.getNum()); Thread.sleep(1000); suggester.createNextIndex(); SuggestItem[] items2 = getItemSet2(); suggester.indexer().index(items2); suggester.refresh();
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 37.2K bytes - Viewed (0)