Solr排序性能问题

发布于 2024-12-09 08:02:34 字数 116 浏览 1 评论 0原文

我试图在查询中对字符串字段指定排序,但看到内存问题,因为索引有大约 50M 文档。

为什么 Solr 实际上对索引中所有文档的字段值进行排序,而不仅仅是查询返回的命中。是否有替代方案来解决这些性能问题。

I am trying to specify sort on a String field in my query but seeing memory issues since the index has around 50M docs.

Why is that Solr actually sorts the field values for all the documents in the index and NOT just the hits returned from the query. Is there an alternative to these performance problems.

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

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

发布评论

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

评论(1

凡间太子 2024-12-16 08:02:34

对于您的查询,使用过滤查询可能会更快。

q=*:*&fq=-uid:XXX&fq=%2B(fid:XXX)&sort=firstName%20asc

http://wiki.apache.org/solr/CommonQueryParameters

For your query, it may be faster to use filter queries.

q=*:*&fq=-uid:XXX&fq=%2B(fid:XXX)&sort=firstName%20asc

http://wiki.apache.org/solr/CommonQueryParameters

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