- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 22 for query_time (0.09 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
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) -
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) -
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: 20Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu May 09 06:31:27 GMT 2024 - 21.6K bytes - Click Count (0) -
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) -
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. */ @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 5.2K bytes - Click Count (0) -
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) -
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) -
src/main/config/es/fess_log_search_log.json
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Apr 12 15:00:27 GMT 2019 - 2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/log/cbean/ca/bs/BsSearchLogCA.java
} public void setQueryTime_Avg(ConditionOptionCall<AvgAggregationBuilder> opLambda) { setQueryTime_Avg("queryTime", opLambda); } public void setQueryTime_Avg(String name, ConditionOptionCall<AvgAggregationBuilder> opLambda) { AvgAggregationBuilder builder = regAvgA(name, "queryTime"); if (opLambda != null) { opLambda.callback(builder); } }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 115.3K bytes - Click Count (0) -
src/main/resources/fess_indices/fess_log.search_log/search_log.json
"type": "keyword" }, "requestedAt": { "type": "date", "format": "date_optional_time" }, "responseTime": { "type": "long" }, "queryTime": { "type": "long" }, "hitCount": { "type": "long" }, "hitCountRelation": { "type": "keyword" }, "queryOffset": { "type": "integer"
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Feb 25 13:38:21 GMT 2022 - 1.6K bytes - Click Count (0)