4 * Queue configuration options.
6 * Changes to these config files are not supported by BookStack and may break upon updates.
7 * Configuration should be altered via the `.env` file or environment variables.
8 * Do not edit this file unless you're happy to maintain any changes yourself.
13 // Default driver to use for the queue
14 // Options: sync, database, redis
15 'default' => env('QUEUE_CONNECTION', 'sync'),
17 // Queue connection configuration
25 'driver' => 'database',
30 'after_commit' => false,
35 'connection' => 'default',
36 'queue' => env('REDIS_QUEUE', 'default'),
39 'after_commit' => false,
46 'database' => 'mysql',
47 'table' => 'job_batches',
50 // Failed queue job logging
52 'driver' => 'database-uuids',
53 'database' => 'mysql',
54 'table' => 'failed_jobs',