Skip to content

Instantly share code, notes, and snippets.

@iberianpig
Last active October 18, 2017 07:33
Show Gist options
  • Save iberianpig/f96b1906bd2d532f05cce5f706223419 to your computer and use it in GitHub Desktop.
Save iberianpig/f96b1906bd2d532f05cce5f706223419 to your computer and use it in GitHub Desktop.
ActiveRecordProxyのメソッドチェーンでcache_keyを提供する
module CacheSupport
extend ActiveSupport::Concern
module ClassMethods
def cache_key
"#{name}/#{ids.hash}-#{maximum(:updated_at).to_i}"
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment