为什么我无法搜索未存储的字段和关键字字段?

发布于 2024-10-29 07:52:20 字数 320 浏览 3 评论 0原文

我有一个 lucene 应用程序,它工作得很好,索引和搜索,除了当我想搜索 1 个未存储字段和 1 个字段关键字(我只有这 2 种字段)时,我使用这个分析器:

Analyzer 分析器 = new SnowballAnalyzer("西班牙语", STOP_WORDS_SPANISH());

IndexWriter writer = new IndexWriter(PATH(), 分析器, true);

我确信我将未存储的字段和关键字字段放在同一个 lucene 文档中。所以我不知道什么失败了。

提前致谢 :)

I have a lucene application and it work's well, index and search, except when I want to search 1 field unstored AND 1 field keyword (I have only this 2 kind of field), and I use this analyzer:

Analyzer analyzer = new SnowballAnalyzer("Spanish", STOP_WORDS_SPANISH());

IndexWriter writer = new IndexWriter(PATH(), analyzer, true);

And I am sure I put the unstored fields and keywords fields in the same lucene document. So I don't know what fail.

Thanks in advance :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

瀞厅☆埖开 2024-11-05 07:52:20

您的搜索应使用与索引相同的分析。
由于您使用两个不同的分析器进行存储,因此在搜索时需要使用类似的分析。
我建议您使用 PerFieldAnalyzerWrapper 将字段与其各自的分析器正确匹配。

Your search should use the same Analysis as your indexing did.
As you are using two different analyzers for storage, you need to use similar analysis when searching.
I suggest you use a PerFieldAnalyzerWrapper to properly match fields with their respective analyzers.

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