Method: ActiveRecord::ConnectionAdapters::QueryCache#uncached

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

#uncachedObject

Disable the query cache within the block.



72
73
74
75
76
77
# File 'lib/active_record/connection_adapters/abstract/query_cache.rb', line 72

def uncached
  old, @query_cache_enabled = @query_cache_enabled, false
  yield
ensure
  @query_cache_enabled = old
end