Process.daemon 与使用 nohup 运行 Ruby 脚本的比较&

发布于 2024-08-19 19:34:04 字数 167 浏览 7 评论 0原文

我有一个 Ruby 1.9 脚本,我想将其作为长时间运行的后台进程运行。

看起来我可以选择在脚本内调用 Process.daemon 来守护它,或者我可以使用 shell 的 & 符号在后台运行脚本并在我注销后保持它运行通过在命令前加上 nohup 前缀来服务器。

哪种方式更好?

I have a Ruby 1.9 script that I want to run as a long-running background process.

It looks like I have a choice between calling Process.daemon inside the script to daemonize it, or I can just run the script in the background using a shell's ampersand and keep it running after I log out of the server by prefixing the command with nohup.

Which way is better?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

拍不死你 2024-08-26 19:34:04

Process.daemon 似乎是一种更干净、更直接的方法,特别是如果您可以将其转变为在引导期间启动的成熟守护进程。

Process.daemon seems like a more clean and straightforward way, especially if this is something you would ever way to turn into a full-fledged daemon that is started during boot.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文