Created
October 1, 2014 06:34
-
-
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).
This file contains 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
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