I need to scrape(using scrAPI) 400+ web pages ruby, my actual code is very sequential:
data = urls.map {|url| scraper.scrape url }
Actually the code is a bit different (exception handling and stuff).
How can I make it faster? How can I parallelize the downloads?