Browse Source

Added configuration for RedisQueue

Abishek R Srikaanth 11 years ago
parent
commit
1fb3e1dd6b
1 changed files with 6 additions and 0 deletions
  1. 6 0
      app/config/queue.php

+ 6 - 0
app/config/queue.php

@@ -55,6 +55,12 @@ return array(
 			'queue'   => 'your-queue-name',
 		),
 
+		'redis' => array(
+			'driver' => 'redis',
+			'host'   => 'localhost',
+			'queue'  => 'default'
+		),		
+
 	),
 
 );