I have Question model as

class Question < ActiveRecord::Base

  belongs_to :category, :counter_cache => true

end

I am using STI with Question model as base class.

I have category model as

class Category < ActiveRecord::Base

  has_many :questions, :dependent => :destroy

end

in categories table i have questions_count column

Counter_cache is working fine when creating or destroying a question but when i update it doesn't counter the cache neither it increments one nor decrements other. I am using rails 3.0.7. Is this expected functionality or am i missing something.

link|improve this question
1  
I don't quite get it. Isn't counter cache meant to track the number of associated records? Why should it change when update is called? – Wahaj Ali Jan 19 at 12:59
As Wajahat said, I think you have a misunderstanding as to how counter cache works. – zsquare Jan 19 at 13:23
so this means, counter cache is not supposed to change the counters on updating records? – priank Jan 30 at 12:33
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.