You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.5 KiB
40 lines
1.5 KiB
<?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',
|
|
'queue' => 'default',
|
|
'host' => env('redis.hostname', '127.0.0.1'),
|
|
'port' => env('redis.hostport', '6379'),
|
|
'password' => env('redis.password', ''),
|
|
'select' => 1,//env('redis.select', '0'),
|
|
'timeout' => 0,
|
|
'persistent' => false,
|
|
'retry_after' => 60, // 队列任务无响应时(例如die exit)重试的间隔时间, 默认60秒
|
|
],
|
|
],
|
|
'failed' => [
|
|
'type' => 'none',
|
|
'table' => 'failed_jobs',
|
|
],
|
|
];
|
|
|