module ActiveRecord::QueryCache::ClassMethods
Public Instance Methods
cache() { || ... }
click to toggle source
Enable the query cache within the block if Active Record
is configured. If it's not, it will execute the given block.
# File activerecord/lib/active_record/query_cache.rb, line 9 def cache(&block) if configurations.empty? yield else connection.cache(&block) end end
uncached() { || ... }
click to toggle source
Disable the query cache within the block if Active Record
is configured. If it's not, it will execute the given block.
# File activerecord/lib/active_record/query_cache.rb, line 19 def uncached(&block) if configurations.empty? yield else connection.uncached(&block) end end