如何将 Lucene 荧光笔与phraseQuery 结合使用?
如何将 Lucene 的荧光笔与phraseQuery 结合使用?
我进行了谷歌搜索,我对 spanScorer、QueryScorer 和类似的东西感到困惑。
我使用的 Lucene 版本是 3.0.3
我的要求是
- 进行多字段查询
- 进行通配符搜索
- 进行短语查询
以上所有内容都需要突出显示。
我该如何实现这一目标?
How to use Lucene's Highlighter with phraseQuery ?
I did a google search, and I am getting confused with spanScorer, QueryScorer, and few things like that..
The Lucene version I am using is 3.0.3
My requirements are
- Doing a multi field query
- Doing a wildcard search
- Doing a phrase query
All the above needs to be highlighted.
How do I achieve this ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
所以我找到了我自己问题的答案......
经过大量的拉扯和谷歌搜索后,我发现了这个:
http://www.gossamer-threads.com/lists/lucene/java-...g=highlight%20wildcard;#116172
具体设置 QueryScorer 如下:
qs .setExpandMultiTermQuery(true);
完成了突出显示通配符搜索的工作。
至于多字段内容,我确实要求它突出显示循环遍历我的字段数组。所以这很丑陋,但是有效。
使用 QueryScorer 轻松短语查询单词。
So I found the answer to my own question...
After a LOT of hair pulling and google searching, I found this :
http://www.gossamer-threads.com/lists/lucene/java-...g=highlight%20wildcard;#116172
Specifically setting up the QueryScorer with this :
qs.setExpandMultiTermQuery(true);
did the job of highlighting wildcard searches.
As for the multi field stuff, I did ask it to highlight looping through my array of fields. So that was ugly, but works.
Phrase query words with QueryScorer easily.