bigcommerce / php-resque-pause
php-resque-pause is a PHP port of resque-pause, which adds support for pausing / unpausing Resque jobs.
Installs: 9 393
Dependents: 0
Suggesters: 0
Security: 0
Stars: 5
Watchers: 86
Forks: 9
Open Issues: 0
Requires
- chrisboulton/php-resque: dev-master
Requires (Dev)
- phpunit/phpunit: ^4.8
- predis/predis: ^1.0
- squizlabs/php_codesniffer: 2.3.0
This package is auto-updated.
Last update: 2024-11-07 17:37:52 UTC
README
A PHP-Resque plugin.
resque-pause adds functionality to pause resque jobs
Using a pause allows you to stop the worker without stop the enqueue
For further information re: php-resque, visit this official repo: http://github.com/chrisboulton/php-resque
Requirements
- PHP 5.3+
- Redis 2.2+
- Composer
Getting Started
resque-pause is installed via composer. To install:
$ # Add php-resque-pause to your project's composer.json $ composer require "bigcommerce/php-resque-pause" $ # Install composer dependencies $ composer install
Usage
To use Resque Pause in your application you'll need to create a globally used instance, we use Pimple but you can use
globals, a static variable, or whatever else you like. Upon instantiation Pause
will add a Resque listener to make
sure that any jobs pushed to a paused queue will be paused as well. On destruction Pause
will remove said listener.
// Let's put it in a global since that's easy/familiar $GLOBALS['ResquePause'] = new \Resque\Plugins\Pause(); // Your enqueues are now being listened to
Pause it!
$GLOBALS['ResquePause']->pause('My_Queue');
Resume it!
$GLOBALS['ResquePause']->resume('My_Queue');
Is it Paused?
$GLOBALS['ResquePause']->isPaused('My_Queue');
Contributing
This repo is fairly thoroughly tested so please add tests for any feature you add. We use PSR-4 conventions and have a
linter in place. To run the linter simply run composer lint
and to run the tests locally run composer test
. To have
your code reviewed please tag @bigcommerce-labs/tools.