Method: ActiveRecord::ConnectionAdapters::QueryCache#uncached

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

#uncachedObject

Disable the query cache within the block.



35
36
37
38
39
40
# File 'lib/active_record/connection_adapters/abstract/query_cache.rb', line 35

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