如何在模型中检索记录时减少相同查询的数量



我已经开始使用查询分析器,它警告我相同的查询。

对于上下文,我在页面上加载了 25 个"帖子",当前用户可以"加注星标"帖子:

0.018 秒 SELECT SQL_NO_CACHE N AS one FROM 'stars' WHERE 'stars'.'post_id' = N AND 'stars'.'user_id' = N LIMIT N 25 个相同的查询

这是用户模型中的方法:

def has_starred_post?(post)
  return false if post.nil?
  Star.where(post_id: post.id, user_id: self.id).exists?
end

如何通过减少查询数来满足此警告?


更新:

根据泰伦·伊斯特的提示,我将User模型方法更新为:

def has_starred_post?(post)
  return false if post.nil?
  self.stars.where(post_id: post.id).exists?
  # OR post.stars.where(:user_id => self.id).exists?
end

虽然这允许我关联/缓存属于用户的星星,但我仍然必须使用where来检查这些星星中是否有任何属于帖子。 对吧?

你可以通过使用关联来减少这种重复查询 - 这些关联由 Rails 自动缓存。

class Post
   has_many :stars

class User
   def has_starred_post?(post)
     return false if post.nil?
     post.stars.exists?
   end

或者重新组织,使其对实际对象模型有意义......

相关内容

  • 没有找到相关文章