class ActiveRecord::QueryCache

Experimental RBS support (using type sampling data from the type_fusion project).

# sig/active_record/query_cache.rbs

class ActiveRecord::QueryCache
  def self.complete: (Array[ActiveRecord::ConnectionAdapters::ConnectionPool] pools) -> untyped
  def self.run: () -> Array[ActiveRecord::ConnectionAdapters::ConnectionPool]
end

Active Record Query Cache

def self.complete(pools)

Experimental RBS support (using type sampling data from the type_fusion project).

def self.complete: ( pools) -> untyped

This signature was generated using 7 samples from 1 application.

def self.complete(pools)
  pools.each { |pool| pool.disable_query_cache! }
  if ActiveRecord.legacy_connection_handling
    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
  else
    ActiveRecord::Base.connection_handler.all_connection_pools.each do |pool|
      pool.release_connection if pool.active_connection? && !pool.connection.transaction_open?
    end
  end
end

def self.install_executor_hooks(executor = ActiveSupport::Executor)

def self.install_executor_hooks(executor = ActiveSupport::Executor)
  executor.register_hook(self)
end

def self.run

Experimental RBS support (using type sampling data from the type_fusion project).

def self.run: () ->

This signature was generated using 12 samples from 1 application.

def self.run
  pools = []
  if ActiveRecord.legacy_connection_handling
    ActiveRecord::Base.connection_handlers.each do |key, handler|
      pools.concat(handler.connection_pool_list.reject { |p| p.query_cache_enabled }.each { |p| p.enable_query_cache! })
    end
  else
    pools.concat(ActiveRecord::Base.connection_handler.all_connection_pools.reject { |p| p.query_cache_enabled }.each { |p| p.enable_query_cache! })
  end
  pools
end