123456789_123456789_123456789_123456789_123456789_

Module: ActiveRecord::ConnectionAdapters::QueryCache::ConnectionPoolConfiguration

Do not use. This module is for internal use only.
Relationships & Source Files
Extension / Inclusion / Inheritance Descendants
Included In:
Defined in: activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb

Instance Method Summary

Instance Method Details

#checkout_and_verify(connection)

[ GitHub ]

  
# File 'activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb', line 96

def checkout_and_verify(connection)
  super
  connection.query_cache ||= query_cache
  connection
end

#clear_query_cache

[ GitHub ]

  
# File 'activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb', line 139

def clear_query_cache
  if @pinned_connection
    # With transactional fixtures, and especially systems test
    # another thread may use the same connection, but with a different
    # query cache. So we must clear them all.
    @thread_query_caches.each_value(&:clear)
  else
    query_cache.clear
  end
end

#dirties_query_cache

[ GitHub ]

  
# File 'activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb', line 135

def dirties_query_cache
  query_cache.dirties
end

#disable_query_cache(dirties: true)

Disable the query cache within the block.

[ GitHub ]

  
# File 'activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb', line 103

def disable_query_cache(dirties: true)
  cache = query_cache
  old_enabled, cache.enabled, old_dirties, cache.dirties = cache.enabled, false, cache.dirties, dirties
  begin
    yield
  ensure
    cache.enabled, cache.dirties = old_enabled, old_dirties
  end
end

#disable_query_cache!

[ GitHub ]

  
# File 'activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb', line 127

def disable_query_cache!
  query_cache.enabled, query_cache.dirties = false, true
end

#enable_query_cache

[ GitHub ]

  
# File 'activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb', line 113

def enable_query_cache
  cache = query_cache
  old_enabled, cache.enabled, old_dirties, cache.dirties = cache.enabled, true, cache.dirties, true
  begin
    yield
  ensure
    cache.enabled, cache.dirties = old_enabled, old_dirties
  end
end

#enable_query_cache!

[ GitHub ]

  
# File 'activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb', line 123

def enable_query_cache!
  query_cache.enabled, query_cache.dirties = true, true
end

#initialize

[ GitHub ]

  
# File 'activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb', line 82

def initialize(...)
  super
  @thread_query_caches = Concurrent::Map.new(initial_capacity: @size)
  @query_cache_max_size = \
    case query_cache = db_config&.query_cache
    when 0, false
      nil
    when Integer
      query_cache
    when nil
      DEFAULT_SIZE
    end
end

#prune_thread_cache (private)

[ GitHub ]

  
# File 'activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb', line 157

def prune_thread_cache
  dead_threads = @thread_query_caches.keys.reject(&:alive?)
  dead_threads.each do |dead_thread|
    @thread_query_caches.delete(dead_thread)
  end
end

#query_cache

[ GitHub ]

  
# File 'activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb', line 150

def query_cache
  @thread_query_caches.compute_if_absent(ActiveSupport::IsolatedExecutionState.context) do
    Store.new(@query_cache_max_size)
  end
end

#query_cache_enabled

[ GitHub ]

  
# File 'activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb', line 131

def query_cache_enabled
  query_cache.enabled
end