当前位置:Gxlcms > PHP教程 > PHP使用Redis回做队列服务

PHP使用Redis回做队列服务

时间:2021-07-01 10:21:17 帮助过:5人阅读

PHP 使用 Redis 来做队列服务


redis = $redis;        $this->key = $key;    }     public function pop()    {        return $this->redis->lPop($this->key); // 左边出    }     public function push($task)    {        return $this->redis->rPush($this->key, $task); // 右边入    }}

队列的一个特点就是先进先出(FIFO),很显然,先产生的任务需要被先处理,redis 的 List 可以保证这一点。

人气教程排行