- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for minimum_should_match (0.25 sec)
-
src/main/resources/fess_config.properties
# 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. query.prefix.expansions=50 # Slop value for prefix queries. query.prefix.slop=0 # Prefix length for fuzzy queries. query.fuzzy.prefix_length=0
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 14:45:37 UTC 2025 - 54.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
* Get the value for the key 'query.bool.minimum_should_match'. <br> * The value is, e.g. <br> * 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>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 525.6K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/query/QueryCommand.java
} final BoolQueryBuilder boolQuery = QueryBuilders.boolQuery(); final String minimumShouldMatch = fessConfig.getQueryBoolMinimumShouldMatch(); if (StringUtil.isNotBlank(minimumShouldMatch)) { boolQuery.minimumShouldMatch(minimumShouldMatch); } return new DefaultQueryBuilder(boolQuery); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.6K bytes - Viewed (0)