Method: ActiveRecord::ConnectionHandling#clear_query_caches_for_current_thread

Defined in:
activerecord/lib/active_record/connection_handling.rb

#clear_query_caches_for_current_threadObject

Clears the query cache for all connections associated with the current thread.



258
259
260
261
262
# File 'activerecord/lib/active_record/connection_handling.rb', line 258

def clear_query_caches_for_current_thread
  connection_handler.each_connection_pool do |pool|
    pool.clear_query_cache
  end
end