| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- // +----------------------------------------------------------------------
- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2006-2016 http://thinkphp.cn All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
- // +----------------------------------------------------------------------
- // | Author: yunwuxin <448901948@qq.com>
- // +----------------------------------------------------------------------
- return [
- 'default' => 'redis',
- 'connections' => [
- 'sync' => [
- 'type' => 'sync',
- ],
- 'database' => [
- 'type' => 'database',
- 'queue' => 'default',
- 'table' => 'jobs',
- 'connection' => null,
- ],
- 'redis' => [
- 'type' => 'redis',
- "expire" => null,//任务过期时间默认为秒,禁用为null
- 'queue' => env('queue.queue'),
- 'host' => env('cache.host','127.0.0.1'),
- 'port' => env('cache.port','6379'),
- 'password' => env('cache.password',''),
- 'select' => env('cache.select',0),
- 'timeout' => env('queue.timeout'),
- 'persistent' => false,
- ],
- ],
- 'failed' => [
- 'type' => 'none',
- 'table' => 'failed_jobs',
- ],
- ];
|