From 0a698ad254f33824defc380374847e5b07c5cf53 Mon Sep 17 00:00:00 2001 From: aixianling Date: Fri, 10 Jan 2025 09:11:25 +0800 Subject: [PATCH] =?UTF-8?q?feat(Gateway):=20=E4=BF=AE=E6=94=B9=E7=BD=91?= =?UTF-8?q?=E5=85=B3=E9=85=8D=E7=BD=AE=E5=B9=B6=E6=B7=BB=E5=8A=A0=E6=96=B0?= =?UTF-8?q?=E6=9C=8D=E5=8A=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 修改原有网关服务的发送线程数从 2 增加到 20 - 添加新的网关服务配置,用于版本验收 - 新增服务的端口和后台服务器端口与原有服务不同 --- Gateway/GateWay.txt | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/Gateway/GateWay.txt b/Gateway/GateWay.txt index 630f201..65961ac 100755 --- a/Gateway/GateWay.txt +++ b/Gateway/GateWay.txt @@ -1,5 +1,4 @@ GateServer = { - --逻辑网关 { --网关服务的绑定地址和端口 LocalService = { @@ -7,7 +6,7 @@ GateServer = { Address = "0.0.0.0", Port = 10317, MaxSession = 8192, --网关中客户端连接池的最大连接数 - SendThreadCount = 2, --数据发送线程池中工作线程数量 + SendThreadCount = 20, --数据发送线程池中工作线程数量 }, --后台服务器的地址和端口 BackServer = { @@ -15,4 +14,17 @@ GateServer = { Port = 10318, }, }, + { + LocalService = { + ServerName = "版本验收-网关服(sid=1001)", + Address = "0.0.0.0", + Port = 10317, + MaxSession = 8192, --网关中客户端连接池的最大连接数 + SendThreadCount = 20, --数据发送线程池中工作线程数量 + }, + BackServer = { + Host = "127.0.0.1", + Port = 11318, + }, + }, } \ No newline at end of file