Method: ActiveRecord::ConnectionAdapters::QueryCache#cache
- Defined in:
- lib/active_record/connection_adapters/abstract/query_cache.rb
#cache ⇒ Object
Enable the query cache within the block.
54 55 56 57 58 59 60 |
# File 'lib/active_record/connection_adapters/abstract/query_cache.rb', line 54 def cache old, @query_cache_enabled = @query_cache_enabled, true yield ensure @query_cache_enabled = old clear_query_cache unless @query_cache_enabled end |