I have some code here

class group < ActiveRecord::Base 
    has_many :memberships, :dependent => :destroy         
    has_many :members, :through => :memberships,  :source => :person
                       :conditions => ['memberships.pending = ? ', false]

     ......

now, I want add a counter_cache for members. Because of the conditions schema, I can't add counter_cache on memberships instead of members. But class person does not belong_to groups, it has_many memberships and memberships belong_to groups. Where should I add the :counter_cache schema ?

or how can I implememt the requirement : add a counter_cache for membership

Thx

link|improve this question
feedback

1 Answer

You probably should implement your own cache counter then.

class Membership < ActiveRecord::Base
  after_create :increment_group_pending_counter_cache

  private

  def increment_group_pending_counter_cache
    if self.pending
      # let's say the column in the groups table is called `pending_member_counter`
      self.group.update_attribute :pending_member_counter, group.pending_member_counter + 1
    end
  end
end

You should also create a counter cache for when a membership is destroyed. But I think I've typed in enough for you to implement that.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.