Rails 3 ActiveRecord:按关联计数排序

时间:2012-01-01 22:29:46

标签: mysql ruby-on-rails ruby-on-rails-3 activerecord

我有一个名为Song的模型。我还有一个名为Listen的模型。一个Listen belongs_to :song和一首歌:has_many listens(可以多次收听)。

在我的模型中,我想定义一个方法self.top,该方法应该返回最多听过的前5首歌曲。如何使用has_many关系实现这一目标?

我正在使用Rails 3.1。

谢谢!

3 个答案:

答案 0 :(得分:93)

使用named scopes

class Song
  has_many :listens
  scope :top5,
    select("songs.id, OTHER_ATTRS_YOU_NEED, count(listens.id) AS listens_count").
    joins(:listens).
    group("songs.id").
    order("listens_count DESC").
    limit(5)

Song.top5 # top 5 most listened songs

答案 1 :(得分:32)

更好的是,使用counter_cache会更快,因为您只会因为在查询中使用一个表

这是你的歌曲课程:

class Song < ActiveRecord::Base
  has_many :listens

  def self.top
    order('listens_count DESC').limit(5)
  end
end

然后,你的听课:

class Listen < ActiveRecord::Base
  belongs_to :song, counter_cache: true
end

确保添加迁移:

add_column :comments, :likes_count, :integer, default: 0

奖励积分,加上测试:

describe '.top' do
  it 'shows most listened songs first' do
    song_one = create(:song)
    song_three = create(:song, listens_count: 3)
    song_two = create(:song, listens_count: 2)

    popular_songs = Song.top

    expect(popular_songs).to eq [song_three, song_two, song_one]
  end
end

或者,如果你想使用上面的方法,这里更简单一点,使用类方法而不是scope

def self.top
    select('comments.*, COUNT(listens.id) AS listens_count').
      joins(:listens).                                                   
      group('comments.id').
      order('listens_count DESC').
      limit(5)
end

答案 2 :(得分:0)

对于rails 4.x如果您的行没有任何关联,请尝试此操作:

JENKINS_ARGS="--httpPort=-1 --httpsKeyStore=/secure/jenkins.keystore --httpsKeyStorePassword=MY_PASSWORD --httpsPort=8443"