Instead of doing this in the cache_money.rb initializer

class ActiveRecord::Base
  is_cached :repository => $cache
end

I want to be able to selectively cache only certain models (the reason being our User model breaks memcached because it's generally too large to be serialized properly).

class User < AR::Base
  is_cached :repository => $cache
end

This, however, throws an exception.

Any idea on how to do this?

link|improve this question

69% accept rate
feedback

1 Answer

What exception is being thrown?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.