Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for indexFromSearchWord (0.12 sec)

  1. 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: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Thu Aug 07 02:41:28 UTC 2025
    - 34.8K bytes
    - Viewed (0)
  2. 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: 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