在 Lucene .Net 中搜索
我使用 Lucene .Net 进行索引,并在索引时使用 StandardAnalyzer。现在我想搜索“附加”。在文件“附件”中有。我如何成功命中“附加”一词。请尽快帮助我。
I have used Lucene .Net for Indexing and using StandardAnalyzer to at time of Indexing. Now I want to search say 'attach'. In document 'attached' is there. How i get the successful hit for word 'attach'. Please help me as soon as possible.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在搜索引擎软件中,将单词形式简化为词根称为“词干”。查看如何在使用 lucene 搜索时启用词干提取的第一个答案.net? 了解使用 Lucene.net 的词干分析器的一些选项。
Reducing word forms to their roots is called "stemming" in search engine software. Look at the first answer to How to enable stemming when searching using lucene.net? for a few options for stemmers using Lucene.net.