Ruby进程(2) Process创建和回收 --- Process.fork, Process.wait和Process.detach

本文介绍了Ruby中的Process模块,重点讨论了Process.fork用于创建子进程,Process.wait用于等待子进程退出并获取状态,以及Process.detach用于释放父进程对子进程的关注,防止僵尸进程的产生。内容引用自StackOverflow。
摘要由CSDN通过智能技术生成

 

Process.fork{}

 

当block为空的时候,fork会返回2次结果,一次是在父进程中,返回子进程的pid,一次是在子进程中,返回nil。

Creates a subprocess. If a block is specified, that block is run in the subprocess, and the subprocess terminates with a status of zero. 

Otherwise, the fork call returns twice, once in the parent, returning the process ID of the child, and once in the child, returning nil. 

 

# Process.fork 会运行两次,第一次返回子进程pid,第二次返回nil
pid = Process.fork
puts "current pid :#{pid}"
if pid.nil? then
  puts "# In child"
  puts exec('ls ~')
else
  puts "# In Parent"
  puts "Sub Process ID:#{Process.wait(pid)}"
end

 

 Source: http://stackoverflow.com/questions/806267/ruby-how-to-fire-and-forget-a-subprocess

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值