|
|
@@ -20,6 +20,7 @@ return [
|
|
|
'host' => '127.0.0.1', // redis 主机ip
|
|
|
'port' => 6379, // redis 端口
|
|
|
'password' => '123456', // redis 密码
|
|
|
+ 'select' => 0, // 默认队列库:db0(除工资队列外)
|
|
|
'timeout' => 0, // redis连接的超时时间
|
|
|
'persistent' => false,
|
|
|
|
|
|
@@ -34,14 +35,14 @@ return [
|
|
|
],
|
|
|
// 成本计算队列(新增队列)
|
|
|
'cost_calculation' => [
|
|
|
- 'select' => 14,
|
|
|
+ 'select' => 0,
|
|
|
'expire' => 1800, // 半小时超时
|
|
|
'delay' => 0, // 立即执行
|
|
|
'retry' => 3, // 重试次数
|
|
|
],
|
|
|
// 工单超节损队列
|
|
|
'order_loss_calculation' => [
|
|
|
- 'select' => 13,
|
|
|
+ 'select' => 0,
|
|
|
'expire' => 1800,
|
|
|
'delay' => 0,
|
|
|
'retry' => 3,
|