Active Record Query Cache
Namespace
Methods
Class Public methods
complete(pools) Link
# File activerecord/lib/active_record/query_cache.rb, line 41 def self.complete(pools) pools.each do |pool| pool.disable_query_cache! pool.clear_query_cache end ActiveRecord::Base.connection_handler.each_connection_pool do |pool| pool.release_connection if pool.active_connection? && !pool.lease_connection.transaction_open? end end