I am wondering how i can go about opening multiple concurrent connections using open-uri? i THINK I need to use threading or fibers some how but i\'m not sure.
Exampl
There is a gem called peach (https://rubygems.org/gems/peach) which lets you do this:
peach
require "peach" array_of_urls_to_process.peach do |url| do_something(get_doc(url)) end