基于帖子数和频率构建趋势算法

时间:2019-06-12 12:23:12

标签: sql ruby-on-rails postgresql

说我有一个董事会模型。董事会有很多职位。我只是想查找在(x)天的时间内具有最高职位数的董事会。下面是我极其幼稚的方法。使用提供的代码,我得到了错误:

ActiveRecord::StatementInvalid (PG::UndefinedTable: ERROR:  missing FROM-clause entry for table "posts")
LINE 1: SELECT  "boards".* FROM "boards" WHERE (board.posts.created_...
                                                ^
: SELECT  "boards".* FROM "boards" WHERE (board.posts.created_at >= '2019-06-05 12:14:30.661233') LIMIT $1

除我收到的错误外,请告诉我是否还有更好的方法来完成此操作。

class Board < ApplicationRecord
  has_many :posts

  scope :trending, -> { includes(:posts).where('board.posts.created_at >= ?', Time.now-7.days).order(posts_count: :desc) }
end

class Post < ApplicationRecord
  belongs_to :board, counter_cache: true
end

更新: 因此,我设法提出了一个可行的范围,但不确定100%是否是最佳范围。您的想法将不胜感激:

scope :trending, -> { includes(:posts).where(posts: { created_at: Time.now - 7.days }).order(posts_count: :desc) }

1 个答案:

答案 0 :(得分:1)

更新:

Board.joins(:posts)
     .select("boards.*, count(posts.id) as latest_posts_count")
     .where('posts.created_at >= ?', 7.days.ago)
     .order('latest_posts_count desc')
     .group('boards.id')

尝试一下,您将需要加入并按board_id分组

Board.joins(:posts)
     .select("boards.*, count(posts.id) as posts_count")
     .where('posts.created_at >= ?', 7.days.ago)
     .order('posts_count desc')
     .group('boards.id')

说明:

  • 我们加入了(内部加入)表格,因此默认情况下,您仅获得具有至少一个与之相关联的职位的董事会
  • 我们根据帖子数对其进行了排序
  • 我们根据board.id对其进行了分组