Method: ActiveRecord::ConnectionAdapters::QueryCache#uncached

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

#uncachedObject

Disable the query cache within the block.



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

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