Method: ActiveRecord::ConnectionAdapters::QueryCache#uncached

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

#uncachedObject

Disable the query cache within the block.



77
78
79
80
81
82
# File 'lib/active_record/connection_adapters/abstract/query_cache.rb', line 77

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