Created
February 7, 2009 18:02
-
-
Save mdarby/59951 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
if RAILS_ENV != 'development' | |
require 'cache_money' | |
config = YAML.load(IO.read(File.join(RAILS_ROOT, "config", "memcached.yml")))[RAILS_ENV] | |
$memcache = MemCache.new(config) | |
$memcache.servers = config['servers'] | |
$local = Cash::Local.new($memcache) | |
$lock = Cash::Lock.new($memcache) | |
$cache = Cash::Transactional.new($local, $lock) | |
class ActiveRecord::Base | |
is_cached :repository => $cache | |
end | |
else | |
# If we're in development mode, we don't want to | |
# deal with caching oddities, so let's override | |
# cache-money's #index method to do nothing... | |
class ActiveRecord::Base | |
def self.index(*args) | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment