Sample database config.

This commit is contained in:
Taylor Otwell 2014-12-19 16:00:18 -06:00
parent 8f6db28661
commit 49cbb23ac5
1 changed files with 9 additions and 1 deletions

View File

@ -11,7 +11,8 @@
| API, giving you convenient access to each back-end using the same
| syntax for each one. Here you may set the default queue driver.
|
| Supported: "null", "sync", "beanstalkd", "sqs", "iron", "redis"
| Supported: "null", "sync", "database", beanstalkd",
| "sqs", "iron", "redis"
|
*/
@ -34,6 +35,13 @@
'driver' => 'sync',
],
'database' => [
'driver' => 'database',
'table' => 'jobs',
'queue' => 'default',
'expire' => 60,
],
'beanstalkd' => [
'driver' => 'beanstalkd',
'host' => 'localhost',