- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for Fuzzy (0.02 sec)
-
src/main/java/org/codelibs/fess/query/FuzzyQueryCommand.java
import org.opensearch.index.query.QueryBuilder; import org.opensearch.index.query.QueryBuilders; /** * Query command implementation for handling fuzzy search queries. * This class converts Lucene FuzzyQuery objects into OpenSearch fuzzy query builders, * supporting configurable fuzzy matching parameters like edit distance and expansions. * */ public class FuzzyQueryCommand extends QueryCommand {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/resources/fess_config.properties
query.boost.fuzzy.title.transpositions=true # Boost value for fuzzy content queries. query.boost.fuzzy.content=0.005 # Fuzziness for fuzzy content queries. query.boost.fuzzy.content.fuzziness=AUTO # Number of expansions for fuzzy content queries. query.boost.fuzzy.content.expansions=10 # Prefix length for fuzzy content queries. query.boost.fuzzy.content.prefix_length=0
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 11 09:47:03 UTC 2025 - 54.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
/** The key of the configuration. e.g. AUTO */ String QUERY_BOOST_FUZZY_CONTENT_FUZZINESS = "query.boost.fuzzy.content.fuzziness"; /** The key of the configuration. e.g. 10 */ String QUERY_BOOST_FUZZY_CONTENT_EXPANSIONS = "query.boost.fuzzy.content.expansions"; /** The key of the configuration. e.g. 0 */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 525.7K bytes - Viewed (2) -
src/main/java/org/codelibs/fess/query/TermQueryCommand.java
} context.addSorts(createFieldSortBuilder(sortField, sortOrder)); })); return null; } /** * Converts a term query for the default field with fuzzy matching support. * * @param fessConfig the Fess configuration * @param context the query context * @param termQuery the term query to convert * @param boost the boost value to applyRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 13.6K bytes - Viewed (0)