module ArCache::ActiveRecord::Associations::SingularAssociation

Private Instance Methods

skip_statement_cache?(...) click to toggle source
Calls superclass method
# File lib/ar_cache/active_record/associations/singular_association.rb, line 7
        def skip_statement_cache?(...)
  return super if ArCache.skip_cache?
  return true if ArCache.cache_reflection?(reflection) { ArCache::Query.new(scope).exec_queries_cacheable? }

  super
end