- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for indexFromSearchWord (0.07 sec)
-
src/test/java/org/codelibs/fess/suggest/index/SuggestIndexerTest.java
String[] tags = new String[] { "tag1" }; String[] roles = new String[] { SuggestConstants.DEFAULT_ROLE }; SuggestIndexResponse response = suggester.indexer().indexFromSearchWord(searchWord, fields, tags, roles, 1, null); assertNotNull(response); assertEquals(1, response.getNumberOfInputDocs()); assertEquals(1, response.getNumberOfSuggestDocs());
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 28.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/index/SuggestIndexer.java
* <li>{@link #indexFromDocument(Map[])} - Index from an array of documents. * <li>{@link #indexFromSearchWord(String, String[], String[], String[], int, String[])} - Index from search word. * <li>{@link #addBadWord(String, boolean)} - Add a bad word and optionally apply it. * <li>{@link #deleteBadWord(String)} - Delete a bad word.
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 34.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/SuggesterTest.java
assertEquals(1, response.getNum()); } @Test public void test_indexFromSearchWord() throws Exception { SuggestIndexResponse indexResponse = suggester.indexer().indexFromSearchWord("検索 エンジン", null, null, null, 1, null); indexResponse.getErrors(); suggester.refresh();
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 37.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SuggestHelper.java
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 22.3K bytes - Viewed (0)