Download the PHP package snower/forsun-laravel without Composer
On this page you can find all versions of the php package snower/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组件。
Main features
- 轻松支持千万级定时任务调度。
- 定时任务触发推送到Queue,轻松支持跨机器和共性能分布式。
- 支持任务到期触发command、Job、Shell、Http和Event。
- 支持驱动原生Laravel Schedule运行。
- 支持创建延时任务和定时到期任务,和原生Laravel Schedule保持相同接口,轻松使用。
Install
- 安装启动forsun服务,详情请看forsun。
- composer安装forsun-laravel。
Config
-
在 config/app.php 注册 ServiceProvider 和 Facade
-
创建配置文件
- 修改应用根目录下的 config/forsun.php 中对应的参数即可。
Used
定义调度
-
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运行
Author
- twitter)
License
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
leric/php-thrift Version
0.9.*
The package snower/forsun-laravel contains the following files
Loading the files please wait ....