Flowdock
method

complete

Importance_0
v7.1.3.2 - 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 32
    def self.complete(pools)
      pools.each { |pool| pool.disable_query_cache! }

      ActiveRecord::Base.connection_handler.each_connection_pool do |pool|
        pool.release_connection if pool.active_connection? && !pool.connection.transaction_open?
      end
    end
Register or log in to add new notes.