Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getAllWordsNum (0.05 sec)

  1. src/test/java/org/codelibs/fess/helper/SuggestHelperTest.java

            } catch (Exception e) {
                assertTrue(true);
            }
        }
    
        public void test_getAllWordsNum() {
            try {
                assertEquals(0L, suggestHelper.getAllWordsNum());
            } catch (Exception e) {
                assertTrue(true);
            }
        }
    
        public void test_getDocumentWordsNum() {
            try {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 16K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

        }
    
        /**
         * Gets the total number of words in the suggest index.
         *
         * @return The total number of words.
         */
        public long getAllWordsNum() {
            return suggester.getAllWordsNum();
        }
    
        /**
         * Gets the number of words from documents in the suggest index.
         *
         * @return The number of document words.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 22.3K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/suggest/SuggesterTest.java

            suggester.refresh();
    
            assertEquals(2, suggester.getAllWordsNum());
            assertEquals(2, suggester.getDocumentWordsNum());
            assertEquals(1, suggester.getQueryWordsNum());
    
            suggester.indexer().deleteAll();
            suggester.refresh();
            assertEquals(0, suggester.getAllWordsNum());
            assertEquals(0, suggester.getDocumentWordsNum());
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Thu Aug 07 02:41:28 UTC 2025
    - 37.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/suggest/Suggester.java

     *   <li>{@link #getNormalizer()}: Returns the Normalizer instance.</li>
     *   <li>{@link #getIndex()}: Returns the index name.</li>
     *   <li>{@link #getAllWordsNum()}: Returns the total number of words in the suggestion index.</li>
     *   <li>{@link #getDocumentWordsNum()}: Returns the number of document words in the suggestion 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 (1)
Back to top