Skip to content

Instantly share code, notes, and snippets.

@DamirSvrtan
Created August 8, 2019 04:52
Show Gist options
  • Save DamirSvrtan/e4f65f76238f749d5328e83a82c8ed4b to your computer and use it in GitHub Desktop.
Save DamirSvrtan/e4f65f76238f749d5328e83a82c8ed4b to your computer and use it in GitHub Desktop.
class UserAPI
def self.find_by_emails(emails)
Parallel.map(emails, in_threads: 10) do |email|
UserApi.fetch_user_by_email(email)
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment