Add background driver (#6699)
* Add background driver Adds settings for PR https://github.com/laravel/framework/pull/57648 * Update queue.php --------- Co-authored-by: Taylor Otwell <taylor@laravel.com>
This commit is contained in:
@@ -25,7 +25,7 @@ return [
|
|||||||
| each backend supported by Laravel. You're also free to add more.
|
| each backend supported by Laravel. You're also free to add more.
|
||||||
|
|
|
|
||||||
| Drivers: "sync", "database", "beanstalkd", "sqs", "redis",
|
| Drivers: "sync", "database", "beanstalkd", "sqs", "redis",
|
||||||
| "deferred", "failover", "null"
|
| "deferred", "background", "failover", "null"
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -77,6 +77,10 @@ return [
|
|||||||
'driver' => 'deferred',
|
'driver' => 'deferred',
|
||||||
],
|
],
|
||||||
|
|
||||||
|
'background' => [
|
||||||
|
'driver' => 'background',
|
||||||
|
],
|
||||||
|
|
||||||
'failover' => [
|
'failover' => [
|
||||||
'driver' => 'failover',
|
'driver' => 'failover',
|
||||||
'connections' => [
|
'connections' => [
|
||||||
|
|||||||
Reference in New Issue
Block a user