Flowdock
method

preload_hash

Importance_0
v3.2.1 - Show latest stable - 0 notes - Class: Preloader
preload_hash(association) 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/associations/preloader.rb, line 111
      def preload_hash(association)
        association.each do |parent, child|
          Preloader.new(records, parent, options).run
          Preloader.new(records.map { |record| record.send(parent) }.flatten, child).run
        end
      end
Register or log in to add new notes.