我可以用lucene索引RDB吗?

发布于 2024-10-19 02:29:09 字数 150 浏览 4 评论 0原文

我有一个 RDB 并为其建立索引。但是 de 数据库中相关的字段,在 lucene 索引中却不是。那么我该如何索引这个关系呢?当然,那我可以好好搜索一下吗?

我在谷歌中搜索,但我只发现我有,没有关系,我认为应该是这样的,但我没有找到

感谢您的回复! :)

I have a RDB and I index it. But the fields in de database that are related, in the lucene index aren't. So how can I index this relation? And, of course, then can I search it well?

I search in google but I only find that I have, without the relation, I think should be something for this, but I didn't find

Thanks for response! :)

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

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

发布评论

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

评论(1

岛歌少女 2024-10-26 02:29:09

在 lucene 中可以做的关键事情是根据每个索引记录存储关系数据库中的 ID。您需要将关系存储中的大量数据放入 lucene 中。然后,您对 lucene 进行搜索,它会为您提供与搜索匹配的关系记录的 ID,然后您可以使用它从关系存储中检索数据。

以下是有关该主题的演示: http://www.slideshare.net/frankmashraqi/lucene-和-mysql

The key thing you can do in lucene is store the ID from your relational db against each index record. You need to place an amount of data in lucene from your relational store. You then fire a search off against lucene which gives you the ID or IDs of the relational records that have matched the search and you could then use that to retreive the data from your relational store.

Here's a presentation on the subject: http://www.slideshare.net/frankmashraqi/lucene-and-mysql

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