Flowdock
method

skip_query_cache_if_necessary

Importance_0
v7.0.0 - Show latest stable - 0 notes - Class: ActiveRecord::Relation
skip_query_cache_if_necessary(&block) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/relation.rb, line 942
      def skip_query_cache_if_necessary(&block)
        if skip_query_cache_value
          uncached(&block)
        else
          yield
        end
      end
Register or log in to add new notes.