如何将 Lucene 荧光笔与phraseQuery 结合使用?

发布于 2024-10-21 00:21:14 字数 215 浏览 1 评论 0原文

如何将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

零崎曲识 2024-10-28 00:21:14

所以我找到了我自己问题的答案......
经过大量的拉扯和谷歌搜索后,我发现了这个:

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文