I want to offload a block of code in my main process to child process to make it run concurrently. I also want to have the PID of the spawned child process so I can monitor and kill it if necessary.
|
|
|
|
|
|
|
In 1.9 you can use Process.spawn command |
||
|
|
|
|
If you are happy to use Threads, rather than Processes, then something like this may be a bit more scaleable to more-than-one fork:
Please see John Topley's excellent comments and reference, below, regarding the Ruby execution model and its restrictions. |
||||
|
|
|
In addition to Chris' great answer, remember to call |
||
|
|
|
You can use the
The It is a good idea to make your forked process |
||||||
|
