- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for Fuzzy (0.41 sec)
-
src/test/java/org/codelibs/fess/query/FuzzyQueryCommandTest.java
assertTrue(fuzzyQueryBuilder.toString().contains("\"fuzzy\"")); } // Test convertFuzzyQuery with non-search field public void test_convertFuzzyQuery_withNonSearchField() { QueryContext context = new QueryContext("test", false); Term term = new Term("unknown_field", "fuzzy"); FuzzyQuery fuzzyQuery = new FuzzyQuery(term, 2); float boost = 1.0f;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.7K bytes - Viewed (0) -
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: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/common/help.jsp
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Feb 26 14:01:31 UTC 2018 - 2.4K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/common/help_ko.jsp
<pre>content_length:[1000 TO 10000]</pre> </dd> <dt>부스트(Boost)검색</dt> <dd> 부스트 검색은 검색어 뒤에 ^을 지정하여 사용할 수 있습니다. ^ 다음에 가중치 값을 정수로 지정하여 그 검색어가 향상됩니다. <pre>Fess^100</pre> </dd> <dt>퍼지(Fuzzy)검색</dt> <dd> 퍼지 검색은 검색어 후 ~을 지정하여 사용할 수 있습니다. 예를 들어, Fess가 포함 된 문서에 퍼지 검색을 수행하려면 다음과 같이 입력합니다. <pre>Fess~0.5</pre> ~ 다음에 값을 1 이하로 지정할 수 있습니다. 기본값은 0.5입니다. </dd>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Feb 26 14:01:31 UTC 2018 - 3.1K bytes - Viewed (0)