Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for matchAllQueryCommand (0.12 sec)

  1. src/main/java/org/codelibs/fess/query/MatchAllQueryCommand.java

    import org.codelibs.fess.entity.QueryContext;
    import org.opensearch.index.query.QueryBuilder;
    import org.opensearch.index.query.QueryBuilders;
    
    public class MatchAllQueryCommand extends QueryCommand {
        private static final Logger logger = LogManager.getLogger(MatchAllQueryCommand.class);
    
        @Override
        protected String getQueryClassName() {
            return MatchAllDocsQuery.class.getSimpleName();
        }
    
        @Override
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. src/main/resources/fess_query.xml

    	</component>
    	<component name="fuzzyQueryCommand"
    		class="org.codelibs.fess.query.FuzzyQueryCommand">
    		<postConstruct name="register"></postConstruct>
    	</component>
    	<component name="matchAllQueryCommand"
    		class="org.codelibs.fess.query.MatchAllQueryCommand">
    		<postConstruct name="register"></postConstruct>
    	</component>
    	<component name="phraseQueryCommand"
    		class="org.codelibs.fess.query.PhraseQueryCommand">
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Mar 19 03:54:52 UTC 2022
    - 1.8K bytes
    - Viewed (0)
Back to top