Active Record Query Cache
Namespace
Methods
Class Public methods
Instance Public methods
# File activerecord/lib/active_record/query_cache.rb, line 60 def call(env) old = ActiveRecord::Base.connection.query_cache_enabled ActiveRecord::Base.connection.enable_query_cache! status, headers, body = @app.call(env) [status, headers, BodyProxy.new(old, body, ActiveRecord::Base.connection_id)] rescue Exception => e ActiveRecord::Base.connection.clear_query_cache unless old ActiveRecord::Base.connection.disable_query_cache! end raise e end