Files
think-worker/tests/stub/config/queue.php
2026-01-06 13:37:07 +08:00

41 lines
1.4 KiB
PHP

<?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_HOST', 'redis'),
'port' => env('REDIS_PORT', 6379),
'password' => '',
'select' => 0,
'timeout' => 0,
'persistent' => true,
'retry_after' => 600,
],
],
'failed' => [
'type' => 'none',
'table' => 'failed_jobs',
],
];