Sha256: 24ace125141d902ddd5457afb12f420626e10b3e39d8dbd395f67e386c994e74

Contents?: true

Size: 1.9 KB

Versions: 43

Compression:

Stored size: 1.9 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.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.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

43 entries across 41 versions & 6 rubygems

Version Path
trusty-cms-7.0.9.1 vendor/bundle/ruby/3.3.0/gems/activerecord-7.0.8.7/lib/active_record/query_cache.rb
activerecord-7.0.8.7 lib/active_record/query_cache.rb
activerecord-7.0.8.6 lib/active_record/query_cache.rb
activerecord-7.0.8.5 lib/active_record/query_cache.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/activerecord-7.0.8.4/lib/active_record/query_cache.rb
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/activerecord-7.0.5.1/lib/active_record/query_cache.rb
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/activerecord-7.0.5.1/lib/active_record/query_cache.rb
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/activerecord-7.0.5.1/lib/active_record/query_cache.rb
activerecord-7.0.8.4 lib/active_record/query_cache.rb
activerecord-7.0.8.1 lib/active_record/query_cache.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/activerecord-7.0.3.1/lib/active_record/query_cache.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/activerecord-7.0.2.3/lib/active_record/query_cache.rb
activerecord-7.0.8 lib/active_record/query_cache.rb
activerecord-7.0.7.2 lib/active_record/query_cache.rb
activerecord-7.0.7.1 lib/active_record/query_cache.rb
activerecord-7.0.7 lib/active_record/query_cache.rb
activerecord-7.0.6 lib/active_record/query_cache.rb
activerecord-7.0.5.1 lib/active_record/query_cache.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/activerecord-7.0.2.3/lib/active_record/query_cache.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/activerecord-7.0.3.1/lib/active_record/query_cache.rb