我正在使用Tire gem在我的应用程序中执行搜索。在我的控制器中,我执行搜索:
@results = Model.search(query: params[:query])
然后我想使用自定义排序方法重新排序结果
@results.each_with_hit do |result|
# complex math that computes final score.
# calculations include model attributes and _score field
# ...
# modify score for the result
result[1]["_score"] = final_score
end
我尝试使用新分数对结果进行排序:
@results.each_with_hit.sort_by {|r| r[1][_score]}
但它似乎不起作用。
答案 0 :(得分:0)
我假设您了解custom_score
查询,并且您有一些特定要求可以排除使用它。请注意,您可以访问脚本中的文档属性(请参阅链接集成测试),因此值得深入探索。
如果确实想要仅使用查询返回的有限结果(因此可能使计算不正确),Enumerable#sort_by
方法确实可以正常工作:
require 'tire'
Tire.index 'articles' do
delete
create
store title: 'One', views: 10
store title: 'Two', views: 30
store title: 'Three', views: 20
store title: 'Four', views: 10
refresh
end
s = Tire.search('articles') { query { string 'title:T*' } }
s.results.
# Sort by sum of title length and views
#
sort_by do |d|
d.title.size + d.views
end.
# Sort in descending order
#
reverse.
# Print results
#
each do |d|
puts "* #{d.title} (#{d.title.size + d.views})"
end
对于普通文档和模型应该采用相同的方式。