- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 22 for exec_time (0.06 seconds)
-
src/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 09:24:04 GMT 2025 - 12.6K bytes - Click Count (0) -
src/main/config/openapi/openapi-user.yaml
type: string example: Fess query_id: type: string example: bd60f9579a494dfd8c03db7c8aa905b0 exec_time: type: number example: 0.21 query_time: type: integer format: int64 example: 0Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu May 09 06:31:27 GMT 2024 - 21.6K bytes - Click Count (0) -
MIGRATION.md
# Or using the legacy endpoint curl "http://localhost:8080/json/?q=search&num=10" ``` **Response**: ```json { "response": { "version": 1, "status": 0, "q": "search", "exec_time": 0.123, "page_size": 10, "page_number": 1, "record_count": 234, "result": [ { "url": "http://example.com/page1", "title": "Example Page",Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 06 12:40:11 GMT 2025 - 23.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
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) -
src/main/java/org/codelibs/fess/indexer/IndexUpdater.java
if (!accessResultList.isEmpty()) { final long execTime = systemHelper.getCurrentTimeAsLong(); final int size = accessResultList.size(); dataService.update(accessResultList); accessResultList.clear(); final long time = systemHelper.getCurrentTimeAsLong() - execTime; if (logger.isDebugEnabled()) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 32.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/QueryResponseList.java
*/ public long getExecTime() { return execTime; } /** * Sets the total execution time for the search request in milliseconds. * * @param execTime the execution time in milliseconds */ public void setExecTime(final long execTime) { this.execTime = execTime; } /**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/java/org/codelibs/fess/entity/SearchRenderData.java
} /** * Sets the formatted execution time for the search request. * * @param execTime The formatted execution time string */ public void setExecTime(final String execTime) { this.execTime = execTime; } /** * Sets the number of results per page. * * @param pageSize The page size */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) -
src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackTest.java
private final AtomicLong execTime = new AtomicLong(0); @Override public void store(DataStoreParams paramMap, Map<String, Object> dataMap) { assertNotNull(paramMap); assertNotNull(dataMap); docSize.incrementAndGet(); execTime.addAndGet(100); } @Override
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 12.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/DataIndexHelper.java
final long execTime = systemHelper.getCurrentTimeAsLong() - startTime; crawlingInfoHelper.putToInfoMap(Constants.DATA_CRAWLING_EXEC_TIME, Long.toString(execTime)); if (logger.isInfoEnabled()) { logger.info("[EXEC TIME] crawling time: {}ms", execTime); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 19K bytes - Click Count (0) -
src/main/webapp/WEB-INF/view/admin/searchlist/admin_searchlist.jsp
</c:if> <c:if test="${execTime!=null}"> <la:message key="labels.search_result_time" arg0="${f:h(execTime)}"/> </c:if> </div>Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Feb 23 08:03:44 GMT 2026 - 20.1K bytes - Click Count (0)