To get real concurrency in Ruby or Python, I need to create new processes. Python does this quite simply using the multiprocessing module, which abstracts all the benefits of fork / wait and allows me to focus on my code. Does Ruby have something similar? Right now I'm calling Process.fork and Process.wait to get my concurrency, and I want a cleaner solution.
Vlad the Impala
source share