少废话主要看文档
官方文档
yii2-queue 的使用
1.安装
?
1
|
composer require --prefer-dist yiisoft/yii2-queue
|
2.配置,在 common/config/main.php 中配置
redis作为驱动
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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 作为驱动
?
1
2
3
4
5
6
7
8
9
10
11
12
|
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' ,
],
],
];
|
3.新建 frontend/components/DownloadJob
?
1
2
3
4
5
6
7
8
9
10
|
class DownloadJob extends BaseObject implements \\yii\\queue\\JobInterface
{
public $url ;
public $file ;
public function execute( $queue )
{
file_put_contents ( $this ->file, file_get_contents ( $this ->url));
}
}
|
4.控制台
控制台用于监听和处理队列任务。
cmd 下 监听队列
?
1
|
yii queue/listen
|
5.添加到队列
将任务添加到队列:
?
1
2
3
4
|
Yii:: $app ->queue->push( new frontend\\components\\DownloadJob([
'url' => 'http://example.com/image.jpg' ,
'file' => '/tmp/image.jpg' ,
]));
|
将任务推送到队列中延时5分钟运行:
?
1
2
3
4
|
Yii:: $app ->queue->delay(5 * 60)->push( new frontend\\components\\DownloadJob([
'url' => 'http://example.com/image.jpg' ,
'file' => '/tmp/image.jpg' ,
]));
|
6.测试
执行 5 中的程序,控制台监听到,便会后台自动 下载http://example.com/image.jpg到本地为/tmp/image.jpg
启动worker
可以使用Supervisor或Systemd 来启动多进程worker,也可以使用 Cron,我们这里主要说一下Supervisor
centos7 supervisor的使用
1.安装supervisor
?
1
2
3
4
5
6
7
|
yum update
yum install epel-release
yum install -y supervisor
#开机启动
systemctl enable supervisord
#启动
systemctl start supervisord
|
2.supervisor 命令
?
1
2
3
|
supervisorctl status 查看进程状态
supervisorctl reload 重启supervisord
supervisorctl start|stop|restart 启动关闭重启进程
|
3.添加配置文件
Supervisor 配置文件通常在 /etc/supervisord.d 目录下. 你可以创建一些配置文件在这里.
注:文件名是.ini结尾
下面就是个例子:
?
1
2
3
4
5
6
7
8
9
|
[program:yii-queue-worker]
process_name=%(program_name)s_%(process_num)02d
command=/usr/bin/php /var/www/my_project/yii queue/listen --verbose=1 --color=0
autostart=true
autorestart=true
user=www-data
numprocs=4
redirect_stderr=true
stdout_logfile=/var/www/my_project/log/yii-queue-worker.log
|
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持快网idc。
原文链接:https://segmentfault.com/a/1190000019805030
相关文章
猜你喜欢
- ASP.NET自助建站系统中如何实现多语言支持? 2025-06-10
- 64M VPS建站:如何选择最适合的网站建设平台? 2025-06-10
- ASP.NET本地开发时常见的配置错误及解决方法? 2025-06-10
- ASP.NET自助建站系统的数据库备份与恢复操作指南 2025-06-10
- 个人网站服务器域名解析设置指南:从购买到绑定全流程 2025-06-10
TA的动态
- 2025-07-10 怎样使用阿里云的安全工具进行服务器漏洞扫描和修复?
- 2025-07-10 怎样使用命令行工具优化Linux云服务器的Ping性能?
- 2025-07-10 怎样使用Xshell连接华为云服务器,实现高效远程管理?
- 2025-07-10 怎样利用云服务器D盘搭建稳定、高效的网站托管环境?
- 2025-07-10 怎样使用阿里云的安全组功能来增强服务器防火墙的安全性?
快网idc优惠网
QQ交流群
您的支持,是我们最大的动力!
热门文章
-
2025-05-27 83
-
2025-06-04 58
-
2025-05-25 73
-
2025-05-25 27
-
2025-05-29 39
热门评论