cach invalidation help

16 views
Skip to first unread message

Arup Rakshit

unread,
Jun 18, 2017, 2:51:44 AM6/18/17
to Ruby on Rails: Talk
I have the below code:

class ContactsController < ApplicationController
 
  # ..

  def top_3
    cache_identifiers = { contact_1: 1, contact_2: 2, contact_3: 3 }
    cache_keys = cache_identifiers.keys
    cached_keys_with_values = Rails.cache.read_multi(*cache_keys)
    uncached_keys = cache_keys.map { |key| key unless cached_keys_with_values.has_key?(key) }.compact
    uncached_ids = uncached_keys.map { |key| cache_identifiers[key] }
    uncached_contacts = Contact.where(id: uncached_ids).to_a

    uncached_keys.zip(uncached_contacts).each do |key, value|
      Rails.cache.write(key, value)
    end

    @contacts = cache_keys.map do |key|
      cached_keys_with_values[key] || uncached_contacts.shift
    end
  end
end

I am using memcached as cache store. Now my question is how can I invalidate the cache when say any of the attributes(name, email) of the contact record changes.

Jason Fleetwood-Boldt

unread,
Jun 19, 2017, 10:13:58 AM6/19/17
to rubyonra...@googlegroups.com

Not sure were you got all of this code from… were you following an example somewhere?

This appears to be way overcomplicated for your use case.

The definitive and nearly ubiqutious method for simple object caching (incidentally, the singular form is spelled "cache," as in a small hiding place. The word comes from the French, not to be confused with cachet, which also comes from French, and means "superior status" or "prestige") is from the DHH post from 2013…



Assuming your objects are ActiveResource objects, you automatically get cache_key defined for you.

All you need to do is wrap the expensive (processing/time-intensive) code in the caching mechanism

Rails.cache.fetch(@contact)
   // serialize or render the response data
end 


… that's it. As explained in DHH's post from 2013, cache_key on @contact automatically includes the timestamp of when the record was last updated. When you make a change to any field the update_at timestamp changes, and so does the cache key, invalidating all caches associated with that cache key.

All of the other code you have looks like you went down a caching rabbit hole that is unnecessary. (But learning the internals of the Rails caching mechanism is a good thing for your own edification!)

-Jason 




--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-ta...@googlegroups.com.
To post to this group, send email to rubyonra...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/13256849-6db8-47f9-97e8-c51688d54ba7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

If you'd like to reply by encrypted email you can find my public key on jasonfleetwoodboldt.com (more about setting GPG: https://gpgtools.org

Jason Fleetwood-Boldt

unread,
Jun 19, 2017, 5:23:18 PM6/19/17
to rubyonra...@googlegroups.com
Correction: this referenced blog post is from 2012, not 2013





For more options, visit https://groups.google.com/d/optout.
Reply all
Reply to author
Forward
0 new messages