Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getTookMs (0.08 sec)

  1. src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestResponse.java

         */
        public String getIndex() {
            return index;
        }
    
        /**
         * Returns the time taken in milliseconds.
         * @return The time taken.
         */
        public long getTookMs() {
            return tookMs;
        }
    
        /**
         * Returns the list of suggested words.
         * @return The list of words.
         */
        public List<String> getWords() {
            return words;
        }
    
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Fri Jul 04 14:00:23 UTC 2025
    - 3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsResponse.java

            return index;
        }
    
        /**
         * Returns the time taken to generate the response in milliseconds.
         *
         * @return the time taken in milliseconds
         */
        public long getTookMs() {
            return tookMs;
        }
    
        /**
         * Returns the list of popular words.
         *
         * @return the list of popular words
         */
        public List<String> getWords() {
            return words;
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Sat Mar 15 06:51:20 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                }
    
                final SuggestResponse suggestResponse = builder.execute().getResponse();
    
                buf.append("\"query_time\":").append(suggestResponse.getTookMs());
                buf.append(",\"record_count\":").append(suggestResponse.getTotal());
                buf.append(",\"page_size\":").append(suggestResponse.getNum());
    
                if (!suggestResponse.getItems().isEmpty()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.6K bytes
    - Viewed (1)
Back to top