Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for query_time (0.6 seconds)

  1. 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)
  2. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

             * Indicates if the search results are partial.
             */
            protected boolean partial;
            /**
             * The time taken for the search query in milliseconds.
             */
            protected long queryTime;
            /**
             * The search query string.
             */
            protected String searchQuery;
            /**
             * The time when the search request was made.
             */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 25.8K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java

                RenderDataUtil.register(data, "pageNumberList", pageNumberList);
                RenderDataUtil.register(data, "partialResults", partialResults);
                RenderDataUtil.register(data, "queryTime", queryTime);
                RenderDataUtil.register(data, "searchQuery", searchQuery);
                RenderDataUtil.register(data, "requestedTime", requestedTime);
            }
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:38:39 GMT 2026
    - 25.5K bytes
    - Click Count (1)
  4. src/main/resources/fess_config.properties

    query.boost.fuzzy.content.prefix_length=0
    # Whether to allow transpositions in fuzzy content queries.
    query.boost.fuzzy.content.transpositions=true
    
    # Default query type.
    query.default.query_type=bool
    # Tie breaker value for dismax queries.
    query.dismax.tie_breaker=0.1
    # Minimum should match value for boolean queries.
    query.bool.minimum_should_match=
    
    # Number of expansions for prefix queries.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 59.3K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        String QUERY_BOOST_FUZZY_CONTENT_TRANSPOSITIONS = "query.boost.fuzzy.content.transpositions";
    
        /** The key of the configuration. e.g. bool */
        String QUERY_DEFAULT_query_type = "query.default.query_type";
    
        /** The key of the configuration. e.g. 0.1 */
        String QUERY_DISMAX_tie_breaker = "query.dismax.tie_breaker";
    
        /** The key of the configuration. e.g.  */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 576.9K bytes
    - Click Count (2)
Back to Top