我在 lucene.Net 中进行了模糊搜索。在此,如果我进行搜索Feature
,则Feature
, Featured
,featuring
只会出现。但是数据是基于文本匹配的,例如venture
,culture
等等。ture
在该模糊搜索中匹配。我的代码是
Query query = new FuzzyQuery(new Term("ContentText", searchString));
finalQuery.Add(query, BooleanClause.Occur.SHOULD);