I am using twitter gem to make API calls from my app and fetch some data.
I have an array of user_ids
and I want to fetch all tweets of each user by doing something like this:
user_ids.map {|user_id| Client.user_timeline(user_id)}
Is there any way to make these calls concurrent? Is there any way that I can use typhoeus or any similar gem with twitter? Is there any other way I can make this operation fast?