Ruby 1.9.2 中 Process.fork 和 Process.spawn 有什么区别
Process.fork 和 Ruby 1.9.2 中新的 Process.spawn 方法有什么区别?哪一个更适合在子进程中运行另一个程序?据我了解 Process.fork 接受代码块,而 Process.spawn 接受系统命令和一些其他参数。我什么时候应该使用其中一种而不是另一种?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Process.fork
允许您在另一个进程中运行 ruby 代码。 Process.spawn 允许您在另一个进程中运行另一个程序。基本上,Process.spawn
就像使用Process.fork
,然后在分叉进程中调用exec
,只不过它为您提供了更多选项。如果您需要向后兼容,请使用
fork
+exec
,因为spawn
在 1.8 中不可用。否则请使用spawn
,因为在子进程中运行另一个程序正是spawn
的用途。确切地。
如果您需要在单独的进程中运行任意 ruby 代码,请使用
fork
(您不能使用spawn
来做到这一点)。如果您需要在子进程中调用应用程序,请使用spawn
。Process.fork
allows you to run ruby code in another process.Process.spawn
allows you to run another program in another process. BasicallyProcess.spawn
is like usingProcess.fork
and then callingexec
in the forked process, except that it gives you more options.If you need backwards compatibility, use
fork
+exec
asspawn
is not available in 1.8. Otherwise usespawn
since running another program in a subprocess is exactly whatspawn
is made for.Exactly.
Use
fork
if you need to run arbitrary ruby code in a separate process (you can't do that withspawn
). Usespawn
if you need to invoke an application in a subprocess.我相信 Process.Fork 分叉当前进程,而 Process.Spawn 生成一个新进程。他们是完全不同的。你想要一个新线程还是一个新进程?
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?