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.
33 lines
893 B
33 lines
893 B
2 months ago
|
<?php
|
||
|
|
||
|
use think\facade\Env;
|
||
|
|
||
|
return [
|
||
|
'default' => 'redis',
|
||
|
'connections' => [
|
||
|
'sync' => [
|
||
|
'type' => 'sync',
|
||
|
],
|
||
|
'database' => [
|
||
|
'type' => 'database',
|
||
|
'queue' => 'default',
|
||
|
'table' => 'jobs',
|
||
|
],
|
||
|
'redis' => [
|
||
|
'type' => 'redis',
|
||
|
'queue' => Env::get('queue.listen_name', 'CRMEB_PRO'),
|
||
|
'batch_queue' => Env::get('queue.batch_listen_name', 'CRMEB_PRO_BATCH'),
|
||
|
'host' => Env::get('redis.redis_hostname', '127.0.0.1'),
|
||
|
'port' => Env::get('redis.port', 6379),
|
||
|
'password' => Env::get('redis.redis_password', ''),
|
||
|
'select' => Env::get('redis.select', 0),
|
||
|
'timeout' => 0,
|
||
|
'persistent' => true,
|
||
|
],
|
||
|
],
|
||
|
'failed' => [
|
||
|
'type' => 'none',
|
||
|
'table' => 'failed_jobs',
|
||
|
],
|
||
|
];
|