Created
April 21, 2011 23:10
-
-
Save wuputah/935690 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
while true | |
things = Thing.order("id DESC").limit(100) | |
things.each do |thing| | |
# stuff | |
end | |
things = Thing.order("id DESC").limit(100).where(["id < ?", things.last.id]) | |
break if things.empty? | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment