My rating system is quite simple, either the user like or he doesn't like the article.
Basically, I have something like this and it works perfectly :
class Article
has_many :ratings
def self.by_ratings
all.sort_by{|article| (article.ratings.where(like: true).size).to_f / (article.ratings.size) }
end
end
As you can guess, our app becomes huge in database, traffic increase and this part of the code becomes a bottleneck.
I am trying to rewrite it in pure sql for performance increase. I am also trying to make it as an ActiveRelation to chain up with other conditions. Trying also to write the sql but no success. Any ideas ?
Thanks !
Using :
- Rails 3.0.10
- ActiveRecord
- Sqlite 3 (We can switch to Postgresql)