# File lib/thinking_sphinx/real_time/populator.rb, line 12
  def populate(&block)
    instrument 'start_populating'

    scope.find_in_batches(:batch_size => batch_size) do |instances|
      transcriber.copy *instances
      instrument 'populated', :instances => instances
    end

    instrument 'finish_populating'
  end