From: Zd Yu Date: 2011-05-11T12:38:57+09:00 Subject: how to do task-level parallelism in Windows? I want to achieve better performance through parallelism. The thread-level parallelism is not an option, because it is not *really* parallel. In Linux, kernel.fork makes it easy to achieve task level parallelism. In windows, kernel.spawn seems to be the most closed equivalent. However, it requires to specify the ruby.exe location and script location explicitly, which may be not available at runtime. Is there a better way to achieve task level parallelism in Windows? -- Posted via http://www.ruby-forum.com/.