使用ignore_user abort和set_time_limit(0)用PHP编写的守护进程有多可行

发布于 2024-07-25 00:01:03 字数 789 浏览 3 评论 0原文

我正在研究守护进程,并想知道使用 PHP 来完成此操作是否可行(就内存和 CPU 使用率以及可靠性而言):

<?php
// Ignore user aborts and allow the script
// to run forever
ignore_user_abort(true);
set_time_limit(0);

$fp = fopen('loop.log', 'w');
fwrite($fp, date('Y-m-d H:i:s') . ' Started' . PHP_EOL);
while(1) {
    fwrite($fp, date('Y-m-d H:i:s') . ' Looped' . PHP_EOL);
    if (file_exists('loop.stop')) {
        break;
    }
    // Sleep for 100 seconds
    sleep(100);
}
fwrite($fp, date('Y-m-d H:i:s') . ' Stopped' . PHP_EOL);
fclose($fp);

这个简单的示例(改编自 PHP 手册 ignore_user_abort) 只是容器脚本。 实际功能将放置在 while 循环内。

我已经让这个脚本在我的笔记本电脑上运行了 7 个小时,看起来不错,但作用不大。 还有其他人尝试过这个吗?

I'm mucking about with daemons, and wondered how feasible (in terms of memory and cpu usage, and reliability) it is to do this using PHP:

<?php
// Ignore user aborts and allow the script
// to run forever
ignore_user_abort(true);
set_time_limit(0);

$fp = fopen('loop.log', 'w');
fwrite($fp, date('Y-m-d H:i:s') . ' Started' . PHP_EOL);
while(1) {
    fwrite($fp, date('Y-m-d H:i:s') . ' Looped' . PHP_EOL);
    if (file_exists('loop.stop')) {
        break;
    }
    // Sleep for 100 seconds
    sleep(100);
}
fwrite($fp, date('Y-m-d H:i:s') . ' Stopped' . PHP_EOL);
fclose($fp);

This simple example (adapted from the PHP manual for ignore_user_abort) is just the container script. The actual functionality will be placed inside the while loop.

I've got this script running on my laptop for 7 hours now, and it looks fine, but it doesn't do much. Has anyone else tried this?

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

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

发布评论

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

评论(3

故人的歌 2024-08-01 00:01:03

我倾向于将循环放入 BASH 脚本中,以便定期清理所有 PHP 资源。

#!/bin/bash
clear
date

php -f doChecksAndAct.php
sleep 100
# rerun myself
exec $0

如果您在 PHP 脚本中执行任何特别繁重的设置任务,您还可以在其中放置一个小循环(例如 50-100 次迭代,如果它们之间没有暂停数秒)以减少总次数运行之间的开销时间。

补充:我在博客中介绍了 Bash/PHP(或其他语言)配对,以便您可以非常轻松地循环 PHP 脚本,然后退出以立即重新启动,或暂停一段时间 - 在其他地方完成工作 -- 侧边栏运行工作人员

I would tend to put the loop into a BASH script, so that any PHP resources are regularly cleaned up.

#!/bin/bash
clear
date

php -f doChecksAndAct.php
sleep 100
# rerun myself
exec $0

If you were doing any particularly heavy-to-setup tasks in the PHP script, you could also put a small(ish) loop in there (say 50-100 iterations, if they were not pausing multiple seconds between them) to reduce the total overhead time between runs.

Addition: I've blogged on a Bash/PHP (or other language) pairing so that you can very easily loop in the PHP script, then exit to restart immediately, or pause for a while - Doing the work elsewhere -- Sidebar running the worker.

梦中的蝴蝶 2024-08-01 00:01:03

我建议反对。

4 年前有一个 bug,它说 为对象方法中创建的对象分配的内存不是已发布

开发人员认为这是一个功能请求,但在使用长时间运行的进程时很难解决它。 我尝试过,但当我能够撤销该应用程序时,我感到非常轻松。

I recommend against it.

There is a bug open 4 years ago which says Memory allocated for objects created in object methods is not released.

The devs consider this a Feature request but it's very hard to work around it when using long-running processes. I tried to but was extremely relieved when I was able to retire the application.

关于从前 2024-08-01 00:01:03

sonic 服务器守护进程也值得一试

http://dev.pedemont.com/sonic

sonic server daemon might be worth checking out aswell

http://dev.pedemont.com/sonic

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