Home > Backend Development > PHP Tutorial > PHP 常驻程序处理消息队列

PHP 常驻程序处理消息队列

WBOY
Release: 2016-06-06 20:39:53
Original
1345 people have browsed it

如何常驻一个php脚本,但不采用while(true)这种方式。

回复内容:

如何常驻一个php脚本,但不采用while(true)这种方式。

你不想采取while...true的方式是因为这种方法会非常占用cpu,如果想直接解决的话很简单,用 @蓝浩正在输入 说的sleep,其实用redis来解决也很简单

<code>while (true) {
    // block 10秒钟来等待下一个任务
    $task = $redis->brPop('task', 10);

    if (!empty($task)) {
        ...
    }
}
</code>
Copy after login

你们没遇到过php常驻后台运行时,内存无法释放的问题?!!!

请使用php的CLI模式,不过,也可以直接用while(true)配合sleep,多好的组合为什么不用呢

处理消息队列可以采用crontab定时执行php

如果不用 while 这种方式,只能借助第三方库了
如果监听的队列是支持 amqp 协议的,可以安装 amqp 扩展,其中的 consume 方法可以阻塞监听,这个阻塞是 C 实现的,所以肯定比 php 快很多
如果是redis 队列,phpredis扩展中也有响应的方法,因为redis是支持 block的嘛

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template