Lucene中如何存储对象关系?

发布于 2024-10-03 05:44:09 字数 79 浏览 3 评论 0原文

在 lucene 中存储对象关系的最佳方式是什么?我需要能够轻松快速地读回它们。目前它们没有存储在 lucene 索引中,从数据库读取它们很慢。

What is the best way to store the object relationships in lucene? I need to be able to read them back easily and fast. Currently they are not stored in the lucene index and reading them from DB is slow.

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

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

发布评论

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

评论(1

慢慢从新开始 2024-10-10 05:44:09

最好的选择可能是将您希望引用的所有对象添加到大型哈希表/字典中,并将对象键存储在 Lucene 索引中。

(我可能在那里使用了一些 .Net 特定术语,但我认为相同的概念可以应用于您使用的任何语言)

Your best bet is probably to add all of the objects that you wish to reference in a large hashtable / dictionary and store the object key in the Lucene index.

(I may have used some .Net specific terminology there, but I assume that the same concept can be applied to whatever language you are using)

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