Solr排序性能问题
我试图在查询中对字符串字段指定排序,但看到内存问题,因为索引有大约 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于您的查询,使用过滤查询可能会更快。
http://wiki.apache.org/solr/CommonQueryParameters
For your query, it may be faster to use filter queries.
http://wiki.apache.org/solr/CommonQueryParameters