Say I have a page that lets you download CSV reports of your user account's comments, which can have thousands of records. Is there a faster way to go through each users comments? Right now I'm just doing a simple loop.
@user.comments.each do comment
# create csv
end