I'm trying to make a feed page where users can see the popular posts and the posts of whom they followed. This what I tried (but failed):
@popularPosts = Post.where(cached_votes_score > '2')
returning an error.
undefined local variable or method `cached_votes_score' for #<PagesController:0x007fa2ae08f630> Did you mean? cache_store
Any thought on this?