I have a model that has counter_cache enabled for an association:

class Post
  belongs_to :author, :counter_cache => true
end

class Author
  has_many :posts
end

I am also using a cache fragment for each 'author' and I want to expire that cache whenever @author.posts_count is updated since that value is showing in the UI. The problem is that the internals of counter_cache (increment_counter and decrement_counter) don't appear to invoke the callbacks on Author, so there's no way for me to know when it happens except to expire the cache from within a Post observer (or cache sweeper) which just doesn't seem as clean.

Any ideas?

link|improve this question
feedback

3 Answers

I couldn't get it to work either. In the end, I gave up and wrote my own cache_counter-like method and call it from the after_save callback.

link|improve this answer
Thanks Dex, I'll post the solution I came up with as well – Carter Jun 14 '11 at 18:48
feedback
up vote 0 down vote accepted

I ended up keeping the cache_counter as it was, but then forcing the cache expiry through the Post's after_create callback, like this:

class Post
  belongs_to :author, :counter_cache => true
  after_create :force_author_cache_expiry

  def force_author_cache_expiry
    author.force_cache_expiry!
  end
end

class Author
  has_many :posts

  def force_cache_expiry!
    notify :force_expire_cache
  end
end

then force_expire_cache(author) is a method in my AuthorSweeper class that expires the cache fragment.

link|improve this answer
What's the point in having the counter cache at all then? – Jon Hope Jan 25 at 12:55
feedback

Well, I was having the same problem and ended up in your post, but I discovered that, since the "after_" and "before_" callbacks are public methods, you can do the following:

class Author < ActiveRecord::Base
  has_many :posts

  Post.after_create do
    # Do whatever you want, but...
    self.class == Post # Beware of this
  end
end

I don't know how much standard is to do this, but the methods are public, so I guess is ok.

If you want to keep cache and models separated you can use Sweepers.

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.