Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 160 for Queries (0.04 sec)

  1. src/main/resources/fess_indices/fess_config.related_query/related_query.json

    {
        "properties": {
          "term": {
            "type": "keyword"
          },
          "queries": {
            "type": "keyword"
          },
          "virtualHost": {
            "type": "keyword"
          },
          "createdBy": {
            "type": "keyword"
          },
          "createdTime": {
            "type": "long"
          },
          "updatedBy": {
            "type": "keyword"
          },
          "updatedTime": {
            "type": "long"
          }
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 414 bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/common/help.jsp

    		"*" is a multiple character wildcard search.
    		<pre>Fess*</pre>
    		or
    		<pre>Fe?s</pre>
    	</dd>
    	<dt>Range</dt>
    	<dd>
    		Range Queries allow one to match documents whose field(s) values are
    		between the lower and upper bound specified by the Range Query. Range
    		Queries can be inclusive or exclusive of the upper and lower bounds.
    		If you want to find documents whose content_length fields have values
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Mon Feb 26 14:01:31 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  3. src/main/config/es/fess_config_related_query.json

          "related_query" : {
            "properties" : {
              "createdBy" : {
                "type" : "keyword"
              },
              "createdTime" : {
                "type" : "long"
              },
              "queries" : {
                "type" : "keyword"
              },
              "term" : {
                "type" : "keyword"
              },
              "updatedBy" : {
                "type" : "keyword"
              },
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java

    import org.opensearch.search.aggregations.Aggregations;
    import org.opensearch.search.fetch.subphase.highlight.HighlightField;
    
    /**
     * Default implementation of RankFusionSearcher that performs standard OpenSearch queries.
     * This searcher handles query execution, response processing, and document highlighting.
     */
    public class DefaultSearcher extends RankFusionSearcher {
    
        /** Logger for this class. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/api/admin/suggest/SuggestBody.java

        /** The total number of words in the suggest index. */
        public Long totalWordsNum;
    
        /** The number of words from documents. */
        public Long documentWordsNum;
    
        /** The number of words from search queries. */
        public Long queryWordsNum;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/entity/FacetQueryView.java

         */
        public FacetQueryView() {
            // Default constructor
        }
    
        /**
         * Initializes the facet query view with default file type queries.
         * This method is called after dependency injection to set up file type facets
         * and register all queries with the FacetInfo component.
         */
        @PostConstruct
        public void init() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/Constants.java

        // Request and Field Constants
        // ============================================================
    
        /** Request attribute key for storing queries. */
        public static final String REQUEST_QUERIES = "fess.Queries";
    
        /** Request attribute key for storing highlight queries. */
        public static final String HIGHLIGHT_QUERIES = "fess.HighlightQueries";
    
        /** Request attribute key for storing field logs. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 34.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/pager/RelatedQueryPager.java

         */
        public String id;
    
        /**
         * Search term for the related query.
         */
        public String term;
    
        /**
         * Related queries string containing associated search queries.
         */
        public String queries;
    
        /**
         * User who created the related query entry.
         */
        public String createdBy;
    
        /**
         * Timestamp when the related query was created.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/query/QueryProcessor.java

    import org.opensearch.index.query.QueryBuilder;
    
    import jakarta.annotation.PostConstruct;
    
    /**
     * Query processor component that handles query filters and commands.
     * This class provides a pipeline for processing Lucene queries by applying
     * a chain of filters and executing registered query commands.
     *
     * <p>The processor maintains a map of query commands indexed by query class names
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/query/BoostQueryCommandTest.java

            // PhraseQueryCommand returns DefaultQueryBuilder which wraps either Bool or DisMax
            assertTrue(result instanceof DefaultQueryBuilder);
            // The boost is applied internally to the wrapped queries, not necessarily to the DefaultQueryBuilder itself
        }
    
        public void test_execute_withBooleanQuery() {
            // Test executing BoostQuery with a BooleanQuery inside
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17K bytes
    - Viewed (0)
Back to top