find_each 方法还有其他方法吗?

Are there any alternative ways for find_each method?

我一直在使用Rails 2.3.5.
我想用find_each方法,但是版本里没有

对于 Active Record,是否有其他方法可以使用 find_each 方法?

尝试使用 find_in_batches:

Model.find_in_batches(:batch_size => 1000)  do |records|
    records.each { |record| <your logic here> }
end