I am fairly new to Rails.
I want to track how often a post is read in order to rank them in order of popularity. Therefore, I will have a database column read_cou
read_cou
What about doing something like:
@post.read_count.increment! unless user_signed_in? && current_user.admin?