Merge pull request #30236 from padi/find-each-example-update

Completes ActiveRecord::Batches.find_each example [ci skip]
This commit is contained in:
Rafael França 2017-08-14 17:32:48 -04:00 committed by GitHub
commit 0864735d81

@ -47,7 +47,12 @@ module Batches
# handle from 10000 and beyond by setting the +:start+ and +:finish+
# option on each worker.
#
# # Let's process from record 10_000 on.
# # In worker 1, let's process until 9999 records.
# Person.find_each(finish: 9_999) do |person|
# person.party_all_night!
# end
#
# # In worker 2, let's process from record 10_000 and onwards.
# Person.find_each(start: 10_000) do |person|
# person.party_all_night!
# end