Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getQueryBoolMinimumShouldMatch (0.1 seconds)

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

                return new DefaultQueryBuilder(disMaxQuery);
            }
    
            final BoolQueryBuilder boolQuery = QueryBuilders.boolQuery();
            final String minimumShouldMatch = fessConfig.getQueryBoolMinimumShouldMatch();
            if (StringUtil.isNotBlank(minimumShouldMatch)) {
                boolQuery.minimumShouldMatch(minimumShouldMatch);
            }
            return new DefaultQueryBuilder(boolQuery);
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Nov 23 11:39:05 GMT 2025
    - 11.6K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * comment: Minimum should match value for boolean queries.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getQueryBoolMinimumShouldMatch();
    
        /**
         * Get the value for the key 'query.bool.minimum_should_match' as {@link Integer}. <br>
         * The value is, e.g.  <br>
         * comment: Minimum should match value for boolean queries.
    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