zhishiq / flarum-queue
Add asyn job queue handle feature to laravel with laravel queue
Installs: 348
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Type:flarum-extension
Requires
- flarum/core: ^0.1.0-beta.8
- illuminate/queue: ^5.5
- zhishiq/flarum-redis: ^0.1.0-beta.8.1
This package is auto-updated.
Last update: 2024-10-29 05:28:38 UTC
README
This repo is used as a plugin of flarum. You can install it under flarum root directory with the command:
composer require zhishiq/flarum-queue
This plugin is supposed to be used as a basis by other plugins, it register illuminate/queue service provider with settings which can be set in flarum plugin backend.
This plugin
This plugin provides two commands: queue:listen
, queue:work
You can run the commands through:
php flarum queue:listen
This repo reuses the code in illuminate/queue, so the command flarum queue:listen
and flarum queue:work
are the same with artisan queue:listen
and artisan queue:work