Created
October 28, 2008 20:51
-
-
Save technoweenie/20515 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class ActiveRecord::Base | |
@@cache_store = nil | |
def self.cache_store | |
@@cache_store ||= ActionController::Base.cache_store | |
end | |
def self.caches(method_name, key = nil, options = {}, &block) | |
if key.is_a?(Hash) | |
options = key | |
key = nil | |
end | |
define_method "cached_#{method_name}" do | |
key = instance_eval(&block) if block | |
self.class.cache_store.fetch("#{method_name}:#{key}", options) { send(method_name) } | |
end | |
end | |
end | |
class MyModel < ActiveRecord::Base | |
caches(:expensive_query, :expires_in => 15.minutes) { "#{id}:#{id.updated_at.to_i}" } | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment