0

我正在使用 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]}

但这似乎不起作用。

4

1 回答 1

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

它应该以与模型相同的方式处理普通文档。

于 2013-06-09T15:48:37.393 回答