jelix / resque-module
module for Jelix, providing a Resque worker based on PHP-Resque.
Installs: 19
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 0
Open Issues: 0
Type:jelix-module
Requires
- resque/php-resque: ^1.3.6
Conflicts
- jelix/jelix: <1.7.0-beta.4
README
JelixResque is a module for Jelix, providing a worker to do async tasks, using php-resque.
This module is for Jelix 1.7.x and higher.
Installation
Install it by hands like any other Jelix modules, or use Composer if you installed Jelix 1.7+ with Composer.
In your project:
composer require "jelix/resque-module"
Launch the configurator for your application to enable the module
php yourapp/dev.php module:configure resque
And then launch the installer to activate the module
php yourapp/install/installer.php
Usage
- Implementing jobs which will execute asynchronous tasks.
- configuring and launching workers which will launch jobs
- launching and managing jobs from the client code.