Hi, I’m Josh Symonds

I blog about Ruby on Rails, coding, and servers

Sweeping Caches From Resque (or Anywhere Really)

Reading time 1 minute

Phil Karlton, someone I can only presume is a pretty smart programmer, said “there are only two hard things in Computer Science: cache invalidation and naming things.” He’s totally right; cache invalidation is one of the biggest headaches when designing highly usable, highly available websites and is something that I’m sure every Rails programmer worth their salt has struggled with. (Naming things is also a pain but not the focus of this post.)

And unfortunately the reason for the struggle is that Rails’ caching tools don’t go nearly as far as they should. This is really through no fault of their own; honestly, Rails’ caching methods are amazingly robust, and if you don’t know what they are, you should read the guide on them. But good tools can only take you so far. Ultimately, caching is as application-specific as you can get, and when you get to finely-grained control you have to take the reins yourself.

One of the problems I ran into recently was invalidating caches during an association join. I have two models, album and photo, and when one is added to the other I wanted to expire all the caches dealing with both. I already have cache sweepers in my application, but callbacks aren’t triggered on association. And putting something in an after_add on the association itself didn’t seem like the right answer; why should I put cache expiration stuff in my model when I already have sweepers dedicated to that logic?

I’m not sure I’m in love with the solution I came up with, but it certainly seems to work. All of the association logic happens in Resque jobs, so I added the cache invalidation directly to this jobs by invoking the sweeper manually:

1
PhotoSweeper.send(:new).expire_cache_for(photo)

The send business is necessary because new is a private method for sweepers. Nevertheless this really seems to get the job done; the caches are swept appropriately, and my cache invalidation logic remains safely in the sweepers, where I can add or edit it as much as I want. I suppose if I really wanted to I could put this in an after_add on the model as well. I’ve resisted that so far but maybe it’s the logical place for this kind of expiration logic to happen.

Josh Symonds performs devops and server wrangling on cloud-scale infrastructures, deploys amazing web applications with Ruby on Rails, and creates awesome iOS apps with Objective-C and RubyMotion. He is founder and CTO of Symonds & Son, a development shop focused on quality and excellence.

Josh Symonds