- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for fuzzyQuery (0.05 sec)
-
src/main/java/org/codelibs/fess/query/FuzzyQueryCommand.java
* @param fuzzyQuery the Lucene FuzzyQuery to convert * @param boost the boost factor to apply * @return OpenSearch QueryBuilder configured for fuzzy matching */ protected QueryBuilder convertFuzzyQuery(final QueryContext context, final FuzzyQuery fuzzyQuery, final float boost) { final FessConfig fessConfig = ComponentUtil.getFessConfig(); final Term term = fuzzyQuery.getTerm();Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/TermQueryCommand.java
final Integer fuzzyMinLength = fessConfig.getQueryBoostFuzzyMinLengthAsInteger(); if (fuzzyMinLength >= 0 && text.length() >= fuzzyMinLength) { defaultQuery.add(QueryBuilders.fuzzyQuery(fessConfig.getIndexFieldTitle(), text) .boost(fessConfig.getQueryBoostFuzzyTitleAsDecimal().floatValue()) .prefixLength(fessConfig.getQueryBoostFuzzyTitlePrefixLengthAsInteger())
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 13.6K bytes - Viewed (0)