Commit 49cbb23a authored by Taylor Otwell's avatar Taylor Otwell

Sample database config.

parent 8f6db286
...@@ -11,7 +11,8 @@ return [ ...@@ -11,7 +11,8 @@ return [
| API, giving you convenient access to each back-end using the same | API, giving you convenient access to each back-end using the same
| syntax for each one. Here you may set the default queue driver. | 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 @@ return [ ...@@ -34,6 +35,13 @@ return [
'driver' => 'sync', 'driver' => 'sync',
], ],
'database' => [
'driver' => 'database',
'table' => 'jobs',
'queue' => 'default',
'expire' => 60,
],
'beanstalkd' => [ 'beanstalkd' => [
'driver' => 'beanstalkd', 'driver' => 'beanstalkd',
'host' => 'localhost', 'host' => 'localhost',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment