Skip to Content Skip to Search

module ActiveRecord::ConnectionAdapters::QueryCache

Attributes

[RW] query_cache

Public class methods

Source code GitHub
# File activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb, line 19
        def dirties_query_cache(base, *method_names)
          method_names.each do |method_name|
            base.class_eval <<-end_code, __FILE__, __LINE__ + 1
              def #{method_name}(...)
                if pool.dirties_query_cache
                  ActiveRecord::Base.clear_query_caches_for_current_thread
                end
                super
              end
            end_code
          end
        end
Source code GitHub
# File activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb, line 167
def initialize(*)
  super
  @query_cache = nil
end

Public instance methods

Enable the query cache within the block.

Source code GitHub
# File activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb, line 177
def cache(&)
  pool.enable_query_cache(&)
end

Clears the query cache.

One reason you may wish to call this method explicitly is between queries that ask the database to randomize results. Otherwise the cache would see the same SQL query and repeatedly return the same result each time, silently undermining the randomness you were expecting.

Source code GitHub
# File activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb, line 203
def clear_query_cache
  pool.clear_query_cache
end
Source code GitHub
# File activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb, line 193
def disable_query_cache!
  pool.disable_query_cache!
end
Source code GitHub
# File activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb, line 181
def enable_query_cache!
  pool.enable_query_cache!
end
Source code GitHub
# File activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb, line 172
def query_cache_enabled
  @query_cache&.enabled?
end

Disable the query cache within the block.

Set dirties: false to prevent query caches on all connections from being cleared by write operations. (By default, write operations dirty all connections’ query caches in case they are replicas whose cache would now be outdated.)

Source code GitHub
# File activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb, line 189
def uncached(dirties: true, &)
  pool.disable_query_cache(dirties: dirties, &)
end

Definition files