mirror of
https://github.com/idanoo/php-resque.git
synced 2024-11-22 00:11:53 +00:00
Add comment describing REDIS_BACKEND format to bin/resque
This commit is contained in:
parent
506b769b90
commit
b0385d2959
@ -30,7 +30,15 @@ if(empty($QUEUE)) {
|
|||||||
die("Set QUEUE env var containing the list of queues to work.\n");
|
die("Set QUEUE env var containing the list of queues to work.\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* REDIS_BACKEND can have simple 'host:port' format or use a DSN-style format like this:
|
||||||
|
* - redis://user:pass@host:port
|
||||||
|
*
|
||||||
|
* Note: the 'user' part of the DSN URI is required but is not used.
|
||||||
|
*/
|
||||||
$REDIS_BACKEND = getenv('REDIS_BACKEND');
|
$REDIS_BACKEND = getenv('REDIS_BACKEND');
|
||||||
|
|
||||||
|
// A redis database number
|
||||||
$REDIS_BACKEND_DB = getenv('REDIS_BACKEND_DB');
|
$REDIS_BACKEND_DB = getenv('REDIS_BACKEND_DB');
|
||||||
if(!empty($REDIS_BACKEND)) {
|
if(!empty($REDIS_BACKEND)) {
|
||||||
if (empty($REDIS_BACKEND_DB))
|
if (empty($REDIS_BACKEND_DB))
|
||||||
|
Loading…
Reference in New Issue
Block a user