Flowdock
method

complete

Importance_0
v6.0.0 - Show latest stable - 0 notes - Class: ActiveRecord::QueryCache
complete(pools) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/query_cache.rb, line 38
    def self.complete(pools)
      pools.each { |pool| pool.disable_query_cache! }

      ActiveRecord::Base.connection_handlers.each do |_, handler|
        handler.connection_pool_list.each do |pool|
          pool.release_connection if pool.active_connection? && !pool.connection.transaction_open?
        end
      end
    end
Register or log in to add new notes.