Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
josegonzalez committed May 27, 2012
1 parent f478edf commit 10b8fe9
Show file tree
Hide file tree
Showing 3 changed files with 135 additions and 167 deletions.
30 changes: 16 additions & 14 deletions Config/bootstrap.php
Expand Up @@ -20,18 +20,20 @@
Configure::write('Resque', array(
'Redis' => array('host' => 'localhost', 'port' => 6379), // Redis server location
'default' => array(
'queue' => 'default', // Name of the default queue
'interval' => 5, // Number of second between each works
'workers' => 1 // Number of forks for each workers
),
/* 'queues' => array(
array(
'queue' => 'default', // Use default values from above for missing interval and count indexes
//'user' => 'www-data' // If PHP is running as a different user on you webserver
),
array(
'queue' => 'my-second-queue',
'interval' => 10
)
)*/
'queue' => 'default', // Name of the default queue
'interval' => 5, // Number of second between each works
'workers' => 1 // Number of forks for each workers
),
/*
'queues' => array(
array(
'queue' => 'default', // Use default values from above for missing interval and count indexes
'user' => 'www-data' // If PHP is running as a different user on you webserver
),
array(
'queue' => 'my-second-queue',
'interval' => 10
)
)
*/
));

0 comments on commit 10b8fe9

Please sign in to comment.