From 49cbb23ac5ee83708319039dc45423c76ad08a06 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Fri, 19 Dec 2014 16:00:18 -0600 Subject: [PATCH] Sample database config. --- config/queue.php | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/config/queue.php b/config/queue.php index 2e223d8e..6f52bef8 100755 --- a/config/queue.php +++ b/config/queue.php @@ -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',