Download the PHP package ericychu/forsun-laravel without Composer
On this page you can find all versions of the php package ericychu/forsun-laravel. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Please rate this library. Is it a good library?
Informations about the package forsun-laravel
forsun-laravel
使用高性能的定时调度服务 forsun 的 Laravel/Lumen 组件。
主要特性
- 轻松支持千万级定时任务调度。
- 定时任务触发推送到 Queue,轻松支持跨机器和共性能分布式。
- 支持任务到期触发 command、Job、Shell、Http 和 Event。
- 支持驱动原生 Laravel Schedule 运行。
- 支持创建延时任务和定时到期任务,和原生 Laravel Schedule 保持相同接口,轻松使用。
安装
- 安装启动 forsun 服务,详情请看 forsun。
- composer 安装 forsun-laravel。
配置
Laravel
-
在 config/app.php 注册 ServiceProvider 和 Facade
-
创建配置文件
- 修改应用根目录下的 config/forsun.php 中对应的参数即可。
Lumen
-
在 bootstrap/app.php 注册 Service Provider 和 Facade
-
拷贝配置文件
- 修改应用根目录下的 config/forsun.php 中对应的参数即可。
使用
定义调度
-
Artisan 命令调度。
-
队列任务调度
-
Shell 命令调度
-
Event 事件调度
- HTTP 事件调度
注意:
- 每个任务只能设置一次调度频率。
- 不支持任务输出、任务钩子及维护模式。
- Forsun::plan 是不指定任务名时自动生成,每个任务名必须唯一,相同任务名重复定义将会自动覆盖。
移除调度
调度频率设置
方法 | 描述 |
---|---|
->hourly(); | 每小时运行 |
->hourlyAt(17); | 每小时的第 17 分钟执行一次任务 |
->daily(); | 每天午夜执行一次任务 |
->dailyAt('13:00'); | 每天的 13:00 执行一次任务 |
->monthly(); | 每月执行一次任务 |
->monthlyOn(4, '15:00'); | 在每个月的第四天的 15:00 执行一次任务 |
->everyMinute(); | 每分钟执行一次任务 |
->everyFiveMinutes(); | 每五分钟执行一次任务 |
->everyTenMinutes(); | 每十分钟执行一次任务 |
->everyFifteenMinutes(); | 每十五分钟执行一次任务 |
->everyThirtyMinutes(); | 每半小时执行一次任务 |
->at(strtoetime("2018-03-05 12:32:12")); | 在指定时间2018-03-05 12:32:12运行一次 |
->interval(10); | 从当前时间开始计算每10秒运行一次 |
->later(5); | 从当前时间开始计算稍后5秒运行一次 |
->delay(30); | 从当前时间开始计算稍后30秒运行一次 |
需要复杂定时控制建议生成多个定时任务或是在处理器中再次发起定时任务计划更简便同时也性能更高。
调度器应该尽可能使用Event或是Job通过Queue Work可以更高性能运行。
驱动原生Laravel Schedule运行
开发者
- twitter)
开源许可协议
The code for Predis is distributed under the terms of the MIT license (see LICENSE).
All versions of forsun-laravel with dependencies
PHP Build Version
Package Version
Requires
php Version
>=7.1
ext-json Version *
leric/php-thrift Version 0.9.*
ramsey/uuid Version ^3.8
ext-json Version *
leric/php-thrift Version 0.9.*
ramsey/uuid Version ^3.8
The package ericychu/forsun-laravel contains the following files
Loading the files please wait ....