module ActiveRecord::ConnectionAdapters::QueryCache

def uncached

Disable the query cache within the block.
def uncached
  old, @query_cache_enabled = @query_cache_enabled, false
  yield
ensure
  @query_cache_enabled = old
end