Guest User

Untitled

a guest
Oct 18th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. module CacheSupport
  2. extend ActiveSupport::Concern
  3.  
  4. module ClassMethods
  5. def cache_key
  6. "#{name}/#{ids.hash}-#{maximum(:updated_at).to_i}"
  7. end
  8. end
  9. end
Add Comment
Please, Sign In to add comment