Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 27 for query_time (0.15 seconds)

  1. src/main/java/org/codelibs/fess/app/service/SearchLogService.java

                        op.calendarInterval(DateHistogramInterval.HOUR);
                        op.subAggregation(AggregationBuilders.avg(QUERY_TIME).field(QUERY_TIME));
                        op.minDocCount(0);
                        op.order(BucketOrder.key(true));
                    }, null);
                });
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 32.7K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/it/search/SuggestWordsApiTests.java

            JsonPath jsonPath = JsonPath.from(response);
            assertTrue(jsonPath.getInt("record_count") >= 0);
            assertTrue(jsonPath.getInt("page_size") >= 0);
            assertTrue(jsonPath.getLong("query_time") >= 0);
        }
    
        @Test
        public void testSuggestWords_pageSizeDefault() {
            Map<String, String> params = new HashMap<>();
            params.put("q", "a");
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 03:03:44 GMT 2025
    - 5.7K bytes
    - Click Count (0)
  3. src/main/config/openapi/openapi-user.yaml

                        type: string
                        example: bd60f9579a494dfd8c03db7c8aa905b0
                      exec_time:
                        type: number
                        example: 0.21
                      query_time:
                        type: integer
                        format: int64
                        example: 0
                      page_size:
                        type: integer
                        example: 20
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu May 09 06:31:27 GMT 2024
    - 21.6K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                buf.append(",\"query_id\":");
                buf.append(escapeJson(queryId));
                buf.append(",\"exec_time\":");
                buf.append(execTime);
                buf.append(",\"query_time\":");
                buf.append(queryTime);
                buf.append(',');
                buf.append("\"page_size\":");
                buf.append(pageSize);
                buf.append(',');
                buf.append("\"page_number\":");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 27 13:56:32 GMT 2026
    - 55.4K bytes
    - Click Count (1)
  5. src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java

            /**
             * Sets the time taken to execute the search query.
             *
             * @param queryTime The query execution time in milliseconds
             * @return This builder instance for method chaining
             */
            public SearchResultBuilder queryTime(final long queryTime) {
                this.queryTime = queryTime;
                return this;
            }
    
            /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 8.8K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/entity/SearchRenderData.java

        }
    
        /**
         * Sets the time taken to execute the search query in milliseconds.
         *
         * @param queryTime The query execution time in milliseconds
         */
        public void setQueryTime(final long queryTime) {
            this.queryTime = queryTime;
        }
    
        /**
         * Sets the actual search query executed against the search engine.
         *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 12.5K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/opensearch/log/bsentity/BsSearchLog.java

            this.queryPageSize = value;
        }
    
        public Long getQueryTime() {
            checkSpecifiedProperty("queryTime");
            return queryTime;
        }
    
        public void setQueryTime(Long value) {
            registerModifiedProperty("queryTime");
            this.queryTime = value;
        }
    
        public String getReferer() {
            checkSpecifiedProperty("referer");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 12.2K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/rank/fusion/SearchResultTest.java

        @Test
        public void test_toString() {
            final SearchResult result = SearchResult.create().allRecordCount(100).queryTime(50).build();
    
            final String str = result.toString();
            assertNotNull(str);
            assertTrue(str.contains("allRecordCount=100"));
            assertTrue(str.contains("queryTime=50"));
        }
    
        /**
         * Test SearchResult with all fields populated.
         */
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 5.2K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/opensearch/log/cbean/cq/bs/BsSearchLogCQ.java

            TermQueryBuilder builder = regTermQ("queryTime", queryTime);
            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setQueryTime_NotEqual(Long queryTime) {
            setQueryTime_NotTerm(queryTime, null);
        }
    
        public void setQueryTime_NotTerm(Long queryTime) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 145.5K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/util/QueryResponseList.java

                final long queryTime, final boolean partialResults, final FacetResponse facetResponse, final int start, final int pageSize,
                final int offset) {
            this(documentList, start, pageSize, offset);
            this.allRecordCount = allRecordCount;
            this.allRecordCountRelation = allRecordCountRelation;
            this.queryTime = queryTime;
            this.partialResults = partialResults;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 14.5K bytes
    - Click Count (0)
Back to Top