Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for PopularWordsResponse (0.07 sec)

  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
         */
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Sat Mar 15 06:51:20 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  2. 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
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Thu Aug 07 02:41:28 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsRequestBuilder.java

     * This builder provides methods to set various parameters for the request.
     */
    public class PopularWordsRequestBuilder extends RequestBuilder<PopularWordsRequest, PopularWordsResponse> {
        /**
         * Constructor for PopularWordsRequestBuilder.
         * @param client The OpenSearch client.
         */
        public PopularWordsRequestBuilder(final Client client) {
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Fri Jul 04 14:00:23 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  4. 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();
    
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Sun Aug 31 03:31:14 UTC 2025
    - 12.1K bytes
    - Viewed (1)
  5. 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;
    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