How to chunk an array in Ruby

ghz 1years ago ⋅ 7270 views

Question

In Ruby 1.8.6, I have an array of, say, 100,000 user ids, each of which is an int. I want to perform a block of code on these user ids but I want to do it in chunks. For example, I want to process them 100 at a time. How can I easily achieve this as simply as possible?

I could do something like the following, but probably there's an easier way:

a = Array.new
userids.each { |userid|
  a << userid
  if a.length == 100
    # Process chunk
    a = Array.new
  end
}
unless a.empty?
  # Process chunk
end

Answer

Use [each_slice](https://ruby- doc.org/stdlib-1.8.6/libdoc/enumerator/rdoc/Enumerable.html#method-i- each_slice):

require 'enumerator' # only needed in ruby 1.8.6 and before
userids.each_slice(100) do |a|
  # do something with a
end