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

Included in:
ConnectionPool
Defined in:
activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb

Instance Method Summary collapse

Instance Method Details

#disable_query_cache!Object



43
44
45
46
# File 'activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb', line 43

def disable_query_cache!
  @query_cache_enabled.delete connection_cache_key(current_thread)
  connection.disable_query_cache! if active_connection?
end

#enable_query_cache!Object



38
39
40
41
# File 'activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb', line 38

def enable_query_cache!
  @query_cache_enabled[connection_cache_key(current_thread)] = true
  connection.enable_query_cache! if active_connection?
end

#initializeObject



33
34
35
36
# File 'activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb', line 33

def initialize(*)
  super
  @query_cache_enabled = Concurrent::Map.new { false }
end

#query_cache_enabledObject



48
49
50
# File 'activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb', line 48

def query_cache_enabled
  @query_cache_enabled[connection_cache_key(current_thread)]
end