按相关性排序不执行任何操作
在我的 dupal solr 方面,当我按标题排序时,它的工作并附加 ?solrsort=sort_title asc in url 但按相关性排序对结果没有任何作用,并且不会在 url 中附加任何参数 任何人都可以指导我这件事吗 提前致谢
In my dupal solr facet, when i do sort by title its working and it append
?solrsort=sort_title asc in url but sort by relevance does nothing with the results and does not append any parameter in the url
Can any one guide me about this
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
默认情况下没有任何排序参数,Solr 按分数对结果进行排序。
因此,当您打算按相关性排序时,无需附加任何排序参数。
By default without any sort parameters, Solr sort the results by score.
So you need not append any sort parameters when you intend to sort by relevance.