Method: ActiveRecord::ConnectionAdapters::QueryCache#cache

Defined in:
lib/active_record/connection_adapters/abstract/query_cache.rb

#cacheObject

Enable the query cache within the block.



24
25
26
27
28
29
30
# File 'lib/active_record/connection_adapters/abstract/query_cache.rb', line 24

def cache
  old, @query_cache_enabled = @query_cache_enabled, true
  yield
ensure
  clear_query_cache
  @query_cache_enabled = old
end