eurojet / yii2-job
Component to yii2 for using cron job.
Installs: 1 280
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Requires
- php: >=5.4.0
- yiisoft/yii2: ~2.0.9
Requires (Dev)
- phpunit/phpunit: ~4.5
README
A simple module to have cron-like jobs in your database. In addition to yii's commands, yii-job can be used to create on-the-fly asynchronous jobs. Different kinds of jobs are supported:
- Jobs with crontab that are triggered at defined times.
- Ad-Hoc jobs that are executed at a defined time (or as soon as possible).
To actually process the jobs you can use the JobCommand, which itself can be triggered by a sytem cron job. A common scenario is system a cron job that is executed once per minute to trigger JobCommand.
Database Installing
Run migration
yii migrate --migrationPath=@eurojet/yii2-job/migrations
Yii Installing
Mapping command job
from this package to your configuration in main.php.
Run
If you want to trigger the job processing from the command line you still need a cron job that executes the JobCommand. It should be triggers like this:
yiic job
This is the index command which will sync your jobs in the config with your database and run all jobs that are due.