winter/config/queue.php

94 lines
2.5 KiB
PHP
Raw Normal View History

2014-05-14 23:24:20 +10:00
<?php
2015-02-07 19:42:40 +11:00
return [
2014-05-14 23:24:20 +10:00
/*
|--------------------------------------------------------------------------
| Default Queue Driver
|--------------------------------------------------------------------------
|
| The Laravel queue API supports a variety of back-ends via an unified
| API, giving you convenient access to each back-end using the same
| syntax for each one. Here you may set the default queue driver.
|
2015-02-07 19:42:40 +11:00
| Supported: "null", "sync", "database", "beanstalkd",
| "sqs", "iron", "redis"
2014-05-14 23:24:20 +10:00
|
*/
2015-02-07 19:42:40 +11:00
'default' => 'sync',
2014-05-14 23:24:20 +10:00
/*
|--------------------------------------------------------------------------
| Queue Connections
|--------------------------------------------------------------------------
|
| Here you may configure the connection information for each server that
| is used by your application. A default configuration has been added
| for each back-end shipped with Laravel. You are free to add more.
|
*/
2015-02-07 19:42:40 +11:00
'connections' => [
2014-05-14 23:24:20 +10:00
2015-02-07 19:42:40 +11:00
'sync' => [
2014-05-14 23:24:20 +10:00
'driver' => 'sync',
2015-02-07 19:42:40 +11:00
],
'database' => [
'driver' => 'database',
'table' => 'jobs',
'queue' => 'default',
'expire' => 60,
],
2014-05-14 23:24:20 +10:00
2015-02-07 19:42:40 +11:00
'beanstalkd' => [
2014-05-14 23:24:20 +10:00
'driver' => 'beanstalkd',
'host' => 'localhost',
'queue' => 'default',
'ttr' => 60,
2015-02-07 19:42:40 +11:00
],
2014-05-14 23:24:20 +10:00
2015-02-07 19:42:40 +11:00
'sqs' => [
2014-05-14 23:24:20 +10:00
'driver' => 'sqs',
'key' => 'your-public-key',
2014-05-14 23:24:20 +10:00
'secret' => 'your-secret-key',
'queue' => 'your-queue-url',
2014-05-14 23:24:20 +10:00
'region' => 'us-east-1',
2015-02-07 19:42:40 +11:00
],
2014-05-14 23:24:20 +10:00
2015-02-07 19:42:40 +11:00
'iron' => [
'driver' => 'iron',
'host' => 'mq-aws-us-east-1.iron.io',
'token' => 'your-token',
2015-02-07 19:42:40 +11:00
'project' => 'your-project-id',
'queue' => 'your-queue-name',
2015-02-07 19:42:40 +11:00
'encrypt' => true,
],
2014-05-14 23:24:20 +10:00
2015-02-07 19:42:40 +11:00
'redis' => [
2014-05-14 23:24:20 +10:00
'driver' => 'redis',
'queue' => 'default',
2015-02-07 19:42:40 +11:00
'expire' => 60,
],
2014-05-14 23:24:20 +10:00
2015-02-07 19:42:40 +11:00
],
2014-05-14 23:24:20 +10:00
/*
|--------------------------------------------------------------------------
| Failed Queue Jobs
|--------------------------------------------------------------------------
|
| These options configure the behavior of failed queue job logging so you
| can control which database and table are used to store the jobs that
| have failed. You may change them to any database / table you wish.
|
*/
2015-02-07 19:42:40 +11:00
'failed' => [
'database' => 'mysql',
'table' => 'failed_jobs',
2015-02-07 19:42:40 +11:00
],
2014-05-14 23:24:20 +10:00
];