Sha256: 5fde159c8d77ece820e01945c410fe3d60fc6781a0069fef966450f3b7e7e45d

Contents?: true

Size: 1.26 KB

Versions: 13

Compression:

Stored size: 1.26 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
      ActiveRecord::Base.connection_handler.each_connection_pool.reject { |p| p.query_cache_enabled }.each { |p| p.enable_query_cache! }
    end

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

      ActiveRecord::Base.connection_handler.each_connection_pool do |pool|
        pool.release_connection if pool.active_connection? && !pool.connection.transaction_open?
      end
    end

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

Version data entries

13 entries across 13 versions & 4 rubygems

Version Path
minato_ruby_api_client-0.2.2 vendor/bundle/ruby/3.2.0/gems/activerecord-7.1.3.4/lib/active_record/query_cache.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/activerecord-7.1.3.4/lib/active_record/query_cache.rb
tinymce-rails-7.1.2 vendor/bundle/ruby/3.3.0/gems/activerecord-7.1.3.4/lib/active_record/query_cache.rb
activerecord-7.1.3.4 lib/active_record/query_cache.rb
activerecord-7.1.3.2 lib/active_record/query_cache.rb
activerecord-7.1.3.1 lib/active_record/query_cache.rb
activerecord-7.1.3 lib/active_record/query_cache.rb
activerecord-7.1.2 lib/active_record/query_cache.rb
activerecord-7.1.1 lib/active_record/query_cache.rb
activerecord-7.1.0 lib/active_record/query_cache.rb
activerecord-7.1.0.rc2 lib/active_record/query_cache.rb
activerecord-7.1.0.rc1 lib/active_record/query_cache.rb
activerecord-7.1.0.beta1 lib/active_record/query_cache.rb