Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 7 of 7 for PopularWordsResponse (0.1 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsResponse.java

        /**
         * Constructs a new PopularWordsResponse.
         *
         * @param index the index associated with the response
         * @param tookMs the time taken to generate the response in milliseconds
         * @param words the list of popular words
         * @param total the total number of words
         * @param items the list of suggested items
         */
    Created: Sat Dec 20 13:04:59 GMT 2025
    - Last Modified: Sat Mar 15 06:51:20 GMT 2025
    - 3.1K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsRequestTest.java

            indexQueryItems();
    
            PopularWordsResponse response = suggester.popularWords().setSize(10).addTag("tag1").execute().getResponse();
    
            assertNotNull(response);
            assertTrue(response.getTotal() > 0);
        }
    
        @Test
        public void test_addRole() throws Exception {
            indexQueryItems();
    
    Created: Sat Dec 20 13:04:59 GMT 2025
    - Last Modified: Mon Nov 24 03:40:05 GMT 2025
    - 6.9K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsResponseTest.java

            List<String> words = new ArrayList<>();
            PopularWordsResponse response = new PopularWordsResponse("my-index", 50, words, 5, new ArrayList<>());
    
            assertEquals("my-index", response.getIndex());
        }
    
        @Test
        public void test_getTookMs() throws Exception {
            List<String> words = new ArrayList<>();
            PopularWordsResponse response = new PopularWordsResponse("test-index", 123, words, 5, new ArrayList<>());
    
    Created: Sat Dec 20 13:04:59 GMT 2025
    - Last Modified: Thu Nov 13 00:40:54 GMT 2025
    - 5.6K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsRequestBuilderTest.java

        @Test
        public void test_basicBuilder() throws Exception {
            indexItems();
    
            PopularWordsResponse response = suggester.popularWords().execute().getResponse();
    
            assertNotNull(response);
        }
    
        @Test
        public void test_setSize() throws Exception {
            indexItems();
    
            PopularWordsResponse response = suggester.popularWords().setSize(5).execute().getResponse();
    
            assertNotNull(response);
    Created: Sat Dec 20 13:04:59 GMT 2025
    - Last Modified: Mon Nov 24 03:40:05 GMT 2025
    - 5.1K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsRequest.java

     *   <li>Building the OpenSearch query and rescorer for the popular words search.</li>
     *   <li>Creating a {@link PopularWordsResponse} from the OpenSearch search response.</li>
     * </ul>
     *
     * @see Request
     * @see PopularWordsResponse
     */
    public class PopularWordsRequest extends Request<PopularWordsResponse> {
        /**
         * Constructs a new popular words request.
         */
        public PopularWordsRequest() {
            // nothing
    Created: Sat Dec 20 13:04:59 GMT 2025
    - Last Modified: Thu Aug 07 02:41:28 GMT 2025
    - 9.2K bytes
    - Click Count (0)
  6. README.md

    suggester.indexer().indexFromQueryLog(queryLog);
    ```
    
    ### Popular Words Analytics
    
    ```java
    import org.codelibs.fess.suggest.request.popularwords.PopularWordsResponse;
    
    PopularWordsResponse popularWords = suggester.popularWords()
        .setSize(20)                    // top 20 words
        .setQuery("tech*")              // filter pattern
        .execute()
        .getResponse();
    
    Created: Sat Dec 20 13:04:59 GMT 2025
    - Last Modified: Sun Aug 31 03:31:14 GMT 2025
    - 12.1K bytes
    - Click Count (1)
  7. src/test/java/org/codelibs/fess/suggest/SuggesterTest.java

    import org.codelibs.fess.suggest.index.contents.querylog.QueryLog;
    import org.codelibs.fess.suggest.index.contents.querylog.QueryLogReader;
    import org.codelibs.fess.suggest.request.popularwords.PopularWordsResponse;
    import org.codelibs.fess.suggest.request.suggest.SuggestResponse;
    import org.codelibs.fess.suggest.settings.AnalyzerSettings;
    import org.codelibs.fess.suggest.settings.SuggestSettings;
    Created: Sat Dec 20 13:04:59 GMT 2025
    - Last Modified: Mon Nov 24 03:40:05 GMT 2025
    - 37.4K bytes
    - Click Count (0)
Back to Top