- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for buildMatchPhraseQuery (0.08 sec)
-
src/main/java/org/codelibs/fess/query/PhraseQueryCommand.java
return buildDefaultQueryBuilder(fessConfig, context, (f, b) -> buildMatchPhraseQuery(f, text).boost(b * boost)); } if (isSearchField(field)) { context.addFieldLog(field, text); stream(texts).of(stream -> stream.forEach(t -> context.addHighlightedQuery(t))); return buildMatchPhraseQuery(field, text); }
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/TermQueryCommand.java
final float boost, final String field, final String text) { context.addFieldLog(field, text); context.addHighlightedQuery(text); return buildMatchPhraseQuery(field, text).boost(boost); } /** * Converts a term query to a keyword-based exact term query. * * @param fessConfig the Fess configuration * @param context the query contextRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 13.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/QueryCommand.java
* @param f The field name. * @param text The text to search for. * @return The appropriate query builder. */ protected QueryBuilder buildMatchPhraseQuery(final String f, final String text) { final FessConfig fessConfig = ComponentUtil.getFessConfig(); if (text == null || text.length() != 1Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sun Nov 23 11:39:05 UTC 2025 - 11.6K bytes - Viewed (0)