instance method
uncached
Ruby on Rails 7.1.6
Since v2.2.3Signature
uncached()
Disable the query cache within the block.
Source
# File activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb, line 81
def uncached
old, @query_cache_enabled = @query_cache_enabled, false
yield
ensure
@query_cache_enabled = old
end
Defined in activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb line 81
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveRecord::ConnectionAdapters::QueryCache