]> BookStack Code Mirror - bookstack/blobdiff - app/Config/queue.php
respective book and chapter structure added.
[bookstack] / app / Config / queue.php
index 0f5ee3ce594432d563527cf577948448c367a8a7..795a7932545a315843769ad255dee4eb37d2d842 100644 (file)
@@ -11,7 +11,7 @@
 return [
 
     // Default driver to use for the queue
-    // Options: null, sync, redis
+    // Options: sync, database, redis
     'default' => env('QUEUE_CONNECTION', 'sync'),
 
     // Queue connection configuration
@@ -40,6 +40,12 @@ return [
 
     ],
 
+    // Job batching
+    'batching' => [
+        'database' => 'mysql',
+        'table' => 'job_batches',
+    ],
+
     // Failed queue job logging
     'failed' => [
         'driver'   => 'database-uuids',