Sha256: 88f4bf3c196ab200b70b0ab859a55f3fb172888973183079e617ef0f6330989e

Contents?: true

Size: 1.91 KB

Versions: 37

Compression:

Stored size: 1.91 KB

Contents

# 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

Version data entries

37 entries across 37 versions & 4 rubygems

Version Path
activerecord-6.1.7.10 lib/active_record/query_cache.rb
activerecord-6.1.7.9 lib/active_record/query_cache.rb
activerecord-6.1.7.8 lib/active_record/query_cache.rb
activerecord-6.1.7.7 lib/active_record/query_cache.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/activerecord-6.1.6.1/lib/active_record/query_cache.rb
activerecord-6.1.7.6 lib/active_record/query_cache.rb
activerecord-6.1.7.5 lib/active_record/query_cache.rb
activerecord-6.1.7.4 lib/active_record/query_cache.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/activerecord-6.1.6.1/lib/active_record/query_cache.rb
activerecord-6.1.7.3 lib/active_record/query_cache.rb
activerecord-6.1.7.2 lib/active_record/query_cache.rb
activerecord-6.1.7.1 lib/active_record/query_cache.rb
activerecord-6.1.7 lib/active_record/query_cache.rb
activerecord-6.1.6.1 lib/active_record/query_cache.rb
activerecord-6.1.6 lib/active_record/query_cache.rb
activerecord-6.1.5.1 lib/active_record/query_cache.rb
activerecord-6.1.5 lib/active_record/query_cache.rb
activerecord-6.1.4.7 lib/active_record/query_cache.rb
activerecord-6.1.4.6 lib/active_record/query_cache.rb
activerecord-6.1.4.5 lib/active_record/query_cache.rb