t4web/cron
Composer 安装命令:
composer require t4web/cron
包简介
ZF2 Module. A PHP cron task manager for ZF2 Application
关键字:
README 文档
README
Cron
ZF2 Module. A PHP cron task manager for ZF2 Application. Inspired by Cron/Cron
Installation
Installation of Cron Module uses composer.
php composer.phar require t4web/cron
or add to your composer.json
"require": { "t4web/cron": "^1.0.0" }
Then add T4web\Cron to your config/application.config.php
Configuration
Add to your configuration:
'cron' => [ 'log-directory' => 'data', // default: getcwd()/data 'phpPath' => 'php', // default: php 'scriptPath' => '/path/to/application/public/folder/', // default: getcwd()/public/ 'jobs' => [ [ 'id' => 'cron-job1', 'command' => 'index.php application cron-job1', 'schedule' => '* * * * *' ], [ 'id' => 'cron-job2', 'command' => 'index.php application cron-job2', 'schedule' => '* * * * *' ] ], 'timeout' => 3600 // default: null (without timeout) ]
General options:
| Option | Description |
|---|---|
| log-directory | (not required) path to the log files, no required, but if empty - directory data must be writable |
| phpPath | (not required) path to the php executable, usually "php" |
| scriptPath | (not required) path to your applications public folder, defaults to your root application public folder |
| jobs | an array of jobs and their schedules |
| timeout | (not required) timeout for the cron job (in seconds) |
Options for cron jobs:
| Option | Description |
|---|---|
| id | (required) job identificator - for grouping job reports |
| command | (required) the php script command to be run |
| schedule | (required) A valid Cron schedule |
Run cron job from command line
We recommend add this command to cron with run every minute (* * * * *)
php index.php cron run
Logs
Logs works with T4web\EventSubscriber module (this module provide one place for manage all application events). Install and enable T4web\EventSubscriber in your application config. If module T4web\EventSubscriber does not exists - logs will not be written.
After run in log-directory will be created log file by pattern JOB-ID.log (example: data/cron-job1.log) with content like this:
[2016-02-25 15:43:48] Job fail
Start: 2016-02-25 15:43:47
End: 2016-02-25 15:43:48
Execution time: 1 seconds
--Output:
1
2
3
--End output.
--Error:
PHP Fatal error: Call to undefined function Application\Controller\asd() in /storage/proj/1season/module/Application/src/Application/Controller/CronController.php on line 21
PHP Stack trace:
PHP 1. {main}() /storage/proj/1season/public/index.php:0
PHP 2. Zend\Mvc\Application->run() /storage/proj/1season/public/index.php:21
PHP 3. Zend\EventManager\EventManager->trigger() /storage/proj/1season/vendor/zendframework/zend-mvc/src/Application.php:314
PHP 4. Zend\EventManager\EventManager->triggerListeners() /storage/proj/1season/vendor/zendframework/zend-eventmanager/src/EventManager.php:214
PHP 5. call_user_func:{/storage/proj/1season/vendor/zendframework/zend-eventmanager/src/EventManager.php:490}() /storage/proj/1season/vendor/zendframework/zend-eventmanager/src/EventManager.php:490
PHP 6. Zend\Mvc\DispatchListener->onDispatch() /storage/proj/1season/vendor/zendframework/zend-eventmanager/src/EventManager.php:490
PHP 7. Zend\Mvc\Controller\AbstractController->dispatch() /storage/proj/1season/vendor/zendframework/zend-mvc/src/DispatchListener.php:93
PHP 8. Zend\EventManager\EventManager->trigger() /storage/proj/1season/vendor/zendframework/zend-mvc/src/Controller/AbstractController.php:118
PHP 9. Zend\EventManager\EventManager->triggerListeners() /storage/proj/1season/vendor/zendframework/zend-eventmanager/src/EventManager.php:214
PHP 10. call_user_func:{/storage/proj/1season/vendor/zendframework/zend-eventmanager/src/EventManager.php:490}() /storage/proj/1season/vendor/zendframework/zend-eventmanager/src/EventManager.php:490
PHP 11. Zend\Mvc\Controller\AbstractActionController->onDispatch() /storage/proj/1season/vendor/zendframework/zend-eventmanager/src/EventManager.php:490
PHP 12. Application\Controller\CronController->job1Action() /storage/proj/1season/vendor/zendframework/zend-mvc/src/Controller/AbstractActionController.php:82
--End error.
t4web/cron 适用场景与选型建议
t4web/cron 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 6.56k 次下载、GitHub Stars 达 3, 最近一次更新时间为 2016 年 02 月 24 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「zf2」 「cron」 「zf2 module」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 t4web/cron 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 t4web/cron 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 t4web/cron 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
LosLog provides some log utility
Symfony bundle to monitor and execute commands
EdpModuleLayouts is very simple Laminas module for making module-specific layouts insanely easy.
Scheduling extension for Yii2 framework
Zend Framework module to leverage the symfony dependency injection container
Monitoring for scheduled jobs
统计信息
- 总下载量: 6.56k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 19
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: BSD-3-Clause
- 更新时间: 2016-02-24