libratechie / think-asynctask
一个用于处理异步任务的 Composer 包,可提升应用性能,具有任务调度
v1.0.0
2025-01-21 05:13 UTC
Requires
- php: >=8.0.0
- ext-posix: *
- ext-swoole: >=4.5.3
- topthink/framework: ^8.0
This package is auto-updated.
Last update: 2025-03-21 06:00:35 UTC
README
think-asynctask
是一个基于 Swoole 实现的用于处理异步任务的 Composer 包,通过它可以有效提升应用的性能,并具备强大的任务调度功能。
安装
$ composer require libratechie/think-asynctask
使用
生成 task 任务类
快速创建 FastTask
异步任务类文件
$ php think make:task FastTask
会生成一个 app\tasks\FastTask
异步任务类,可以根据自身需求调整其内部方法以适应需求。
<?php namespace app\tasks; class FastTask { public function invoke() { // TODO: Implement the task logic here. } }
配置调整
<?php return [ // 进程名称 'name' => 'tp_daemon', // 运行模式 'daemon' => true, // 任务类命名空间 'namespace' => '\\app\\tasks', // 任务列表 'tasks' => [ // FastTask:进程名称 'FastTask' => [ 'enable' => true, // 是否开启 'process_num' => 1, // 进程数量 'warning_time' => 0, // 超时阈值 'invoke_count' => 500, // 单次执行循环次数 'task_list' => [ 'FastTask' => [ // 引入的具体类名称 'invoke', // 具体任务 ] ] ] ] ];
运行命令
启动任务
$ php think task
查看状态
$ php think task status
停止任务
$ php think task stop