How do you disable AR query cache globally?

It's the ActiveRecord::Base.cache call that explicitly turns on query caching that was the remaining culprit for me.

Michael

On Mar 17, 7:31�pm, Ilan Berci <rails-mailing-l...@andreas-s.net>

Michael, Would it be possible to open up the ActiveRecord::Base and alias_method_chain the query caching methods to return nil or empty sets which will effectively "disable it"?

I usually do my monkey patching in /lib and then load them up in config/environment.rb..

Thanks for taking the time to explain it fully to me.. was a very interesting read..

good luck and keep me informed..

ilan