Skip to content

Instantly share code, notes, and snippets.

@itskingori
Created October 1, 2014 06:34
Show Gist options
  • Save itskingori/243e9fbc1f833cc039da to your computer and use it in GitHub Desktop.
Save itskingori/243e9fbc1f833cc039da to your computer and use it in GitHub Desktop.
If you have a long running or complicated task that you want to distribute across multiple processes, you can break it into small segments and use DelayedJob to distribute the workload. You can send a lot of email quickly using the methodology below (and a lot of DJ workers).
User.find_in_batches do |user_batch|
do_something_complicated(user_batch)
end
def do_something_complicated(users)
users.each do
user.something_complicated
end
end
handle_asynchronously :do_something_complicated
# https://tech.bellycard.com/blog/load-balancing-for-speed-with-delayed-job/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment