我的 Rails 应用程序上有以下模型:
class User < ActiveRecord::Base
has_many :tags
has_many :talents, :through => :tags
has_many :ratings
define_index do
indexes [:first_name, :last_name], :as => :name, :type => :string
has 'AVG(ratings.value)', :as => :ratings, :type => :integer
has tags(:talent_id), :as => :talent_id
set_property :delta => true
end
def self.ts_search(q, talent)
User.search q, :with => {:talent_id => talent.id}, :order => 'ratings DESC', :sort_mode => :extended
end
end
class Talent < ActiveRecord::Base
has_many :users, :through => :tags
end
class Rating < ActiveRecord::Base
belongs_to :user
belongs_to :talent
end
现在我需要使用 Thinking Sphinx 2.0.14 检索所有具有特定才能的用户,并按该特定才能的评分平均值对它们进行排序。
使用该功能def ts_search(q, talent)
,我可以检索所有具有特定才能的用户,并按所有才能的评分平均值对其进行排序。
如何修改此功能以按该特定人才评分的平均值对用户进行排序?
谢谢大家!