What's the difference between Process.fork and the new Process.spawn methods in Ruby 1.9.2 and which one is better to run another program in a subprocess? As far as I understand Process.fork accepts block of code and Process.spawn takes a system command plus some other parameters. When I should use one instead of the other?
If you need backwards compatibility, use
Exactly.
Use |
|||
|
|
|
I believe Process.Fork forks the current process, and Process.Spawn spawns a new process. They are quite different. Do you want a new thread or a new process? |
|||||
|
|
I think that would depend on the OS you are running on. If you are running on POSIX OS, you can use |
|||
|
|