为什么 Lucene 合并索引?

发布于 2024-08-28 12:35:23 字数 161 浏览 1 评论 0原文

我想知道Lucene为什么要合并索引?

更好的说法是,Lucene 为什么不将所有索引合并为一个索引呢?这种合并方法有什么好处?

I want to know why Lucene merge indexes ?

It's better to say , why does not Lucene merge all indexes to one index ? What is the advantage of this merging method ?

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

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

发布评论

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

评论(1

国际总奸 2024-09-04 12:35:23

简而言之,Lucene通过合并索引来加速搜索。毫无疑问,一个指数表现更好。但实际上,当索引足够大时,有 1 个还是 10 个索引并不重要。搜索每个索引的时间比多个索引引起的开销高出一个数量级。

这纯粹是一个实际的决定——在没有回报的情况下不进行合并。你可以自己查看lucene源代码,了解它使用的合并策略。

In short, Lucene merges indexes to speed up searching. Definitely, one index performs better. But in practice it does not matter if you have one or 10 indexes when they are large enough. The time to search each index is order of magnitude higher than overhead induced by having several indexes.

This is purely practical decision - not to merge when it does not pay off. You can look into lucene source codes by yourself and get merging strategy that it uses.

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