首页 > 作文

Yii2 queue的队列使用详解

更新时间:2023-04-07 14:48:16 阅读: 评论:0

少废话主要看文档

官方文档

yii2-queue 的使用

1.安装

compor require --prefer-dist yiisoft/yii2-queue

2.配置,在 common/config/main.php 中配置

redis作为驱动

return [  'bootstrap' => [    'queue', // 把这个组件注册到控制台  ],  'components' => [    'redis' => [      'class' => \yii\redis\connection::class,      // ...    ],    'queue' => [      'class' => \yii\queue\redis\queue::class,      'as log' => \yii\queue\logbehavior::class,//错误日志 默认为 console/runtime/logs/app.log      'redis' => 'redis', // 连接组件或它的配置      'channel' => 'queue', // queue channel key    ],  ],];

file 作为驱动

return [  'bootstrap' => [    'queue', // 把这个组件注册到控制台  ],  'components' => [    'queue' => [      'class' => \yii\queue\file\queue::class,      'as log' => \yii\queue\logbehavior::class,//错误日志 默认为 console/runtime/logs/app.log      'path' => '@runtime/queue',    ],  ],快递什么时候停运2020年];

3.新建 frontend/components/downloadjob

class downloadjob extends baobject implements \yii\queue\jobinterface{  public $url;  public $file;    public function execute($queue)  {    file_put_contents($this->file, file_get_contents($this->url));  }}

4.控制台

控制台用于监听和处理队列适用于英文任务。

cmd 下 监听队列

yii queue/listen

5.添加到队列

将任务添加到队列:

yii::$app->queue-思源计划>push(new frontend\components\downloadjob([  'url' => 'http://example.com/image.jpg',  'file' => '/tmp/image.jpg',]));

将任务推送到队列中延时5分钟运行:

yii::$app->queue->delay(5 * 60)->push(new frontend\components\downloadjob([  'url' => 'http://example.com/image.jpg',  'file' => '/tmp/image.jpg',]));

6.测试

执行 5 中的程序,控制台监听到,便会后台自动 下载

启动worker

可以使用supervisor或systemd 来启动多进程worker,也可以使用 cron,我们这里主要说一下supervisor

centos7 supervisor的使用

1.安装supervisor

yum updateyum install epel-releayum install -y supervisor#开机启动systemctl enable supervisord#启动systemctl start supervisord

2.supervisor 命令

supervisorctl status 查看进程状态   supervisorctl reloa爱国流行歌曲d 重启supervisord supervisorctl start|stop|restart 启动关闭重启进程 

3.添加配置文件

supervisor 配置文件通常在 /etc/supervisord.d 目录下. 你可以创建一些配置文件在这里.

注:文件名是.ini结尾

下面就是个例子:

[program:yii-queue-worker]process_name=%(program_name)s_%(process_num)02dcommand=/usr/bin/php /var/www/my_project/yii queue/listen --verbo=1 --color=0autostart=trueautorestart=trueur=www-datanumprocs=4redirect_stderr=truestdout_logfile=/var/www/my_project/log/yii-queue-worker.log

以上就是本文的全部内容,丰田金融希望对大家的学习有所帮助,也希望大家多多支持www.887551.com。

本文发布于:2023-04-07 14:48:13,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/5d105d0fca2e4ce39b6e0421a99a1bd8.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:Yii2 queue的队列使用详解.doc

本文 PDF 下载地址:Yii2 queue的队列使用详解.pdf

上一篇:索尼BDV
下一篇:返回列表
标签:队列   控制台   配置文件   组件
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图