HEX
Server: Apache
System: Linux s198.coreserver.jp 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC 2025 x86_64
User: nagasaki (10062)
PHP: 7.1.33
Disabled: NONE
Upload Files
File: //usr/local/rvm/gems/default/gems/activerecord-6.1.4.1/lib/active_record/query_cache.rb
# frozen_string_literal: true

module ActiveRecord
  # = Active Record Query Cache
  class QueryCache
    module ClassMethods
      # Enable the query cache within the block if Active Record is configured.
      # If it's not, it will execute the given block.
      def cache(&block)
        if connected? || !configurations.empty?
          connection.cache(&block)
        else
          yield
        end
      end

      # Disable the query cache within the block if Active Record is configured.
      # If it's not, it will execute the given block.
      def uncached(&block)
        if connected? || !configurations.empty?
          connection.uncached(&block)
        else
          yield
        end
      end
    end

    def self.run
      pools = []

      if ActiveRecord::Base.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

    def self.complete(pools)
      pools.each { |pool| pool.disable_query_cache! }

      if ActiveRecord::Base.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)
      executor.register_hook(self)
    end
  end
end