如何让 cron 启动的脚本休眠 X 秒?

发布于 2024-10-24 21:29:36 字数 249 浏览 6 评论 0原文

我正在改进一个 cron 作业,它会循环很多内容并更新我的数据库。我想让 ut 等待,假设每 100 个请求等待 30 秒。

比如:

loop{
     loop{
          query();
     }
     wait(3000); // wait 3 seconds and continue
}

我可以这样做吗?如果是这样,cron 作业是否可能超时?

谢谢!

I 'm improving a cron job which loops a lot of stuff and updates my database. I would like to make ut wait, let's say 30 seconds every 100 requests.

Something like:

loop{
     loop{
          query();
     }
     wait(3000); // wait 3 seconds and continue
}

Can I do that? If so, is it possible the the cron job times out?

Thanks!

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

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

发布评论

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

评论(5

明月夜 2024-10-31 21:29:36

要进行可配置的暂停,请使用 sleep 函数。

从命令行启动 PHP 时(如 cron 所做的那样),max_execution_time 默认情况下是无限的,因此您不必担心超时,除非您自己更改它。

To make a configurable pause, use the sleep function.

When launching PHP from the command line (as cron does), the max_execution_time is infinite by default, so you won't have to worry about timeouts unless you change it yourself.

葬花如无物 2024-10-31 21:29:36

您可以通过以下方式将执行时间限制设置为无限:

set_time_limit(0);

然后您可以使用 sleep() 函数暂停执行。

You can set execution time limit to infinity with this:

set_time_limit(0);

And then you can use sleep() function to pause the execution.

三生一梦 2024-10-31 21:29:36

请参阅 sleep() 函数。它让您等待 X 秒。

PS:您可能还需要使用set_time_limit()

See the sleep() function. It lets you wait for X seconds.

PS: you may need to also use set_time_limit().

等风来 2024-10-31 21:29:36
// sleep for 10 seconds
sleep(10);
// sleep for 10 seconds
sleep(10);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文