Flowdock
method

association_scope_cache

Importance_0
v4.2.1 - Show latest stable - 0 notes - Class: ActiveRecord::Reflection::AssociationReflection
association_scope_cache(conn, owner) public

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/reflection.rb, line 287
      def association_scope_cache(conn, owner)
        key = conn.prepared_statements
        if polymorphic?
          key = [key, owner._read_attribute(@foreign_type)]
        end
        @association_scope_cache[key] ||= @scope_lock.synchronize {
          @association_scope_cache[key] ||= yield
        }
      end
Register or log in to add new notes.