This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
############################# first version | |
def generate | |
@volunteers.includes( | |
[:user, { taggings: :tag }] | |
).find_each(batch_size: 1000) do |volunteer| | |
csv << VolunteerPresenter.new(volunteer).to_csv | |
end | |
end | |
############################ second version not working | |
def generate | |
prefetch_volunteers do |volunteer| | |
csv << VolunteerPresenter.new(volunteer).to_csv | |
end | |
end | |
private | |
def prefetch_volunteers | |
@volunteers.includes( | |
[:user, { taggings: :tag }] | |
).find_each(batch_size: 1000) | |
end |
In order to fix it we need to pass a block to find_each method by using &Proc.new as an extra argument. According to this article it is a fastest method.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def generate | |
prefetch_volunteers do |volunteer| | |
csv << VolunteerPresenter.new(volunteer).to_csv | |
end | |
end | |
private | |
def prefetch_volunteers | |
@volunteers.includes( | |
[:user, { taggings: :tag }] | |
).find_each(batch_size: 1000, &Proc.new) | |
end |