This is an automated email from the ASF dual-hosted git repository.
albumenj pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/dubbo-website.git
The following commit(s) were added to refs/heads/master by this push:
new e5facf79666 # 连接控制 (#1474)
e5facf79666 is described below
commit e5facf796668bda2938d7d70db63f881127560eb
Author: JIAN ZHONG <[email protected]>
AuthorDate: Wed Sep 7 15:51:15 2022 +0800
# 连接控制 (#1474)
---
.../performance/config-connections.md | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git
a/content/zh/docs3-v2/java-sdk/advanced-features-and-usage/performance/config-connections.md
b/content/zh/docs3-v2/java-sdk/advanced-features-and-usage/performance/config-connections.md
index f9b2ef2daba..4e2f474c4fb 100644
---
a/content/zh/docs3-v2/java-sdk/advanced-features-and-usage/performance/config-connections.md
+++
b/content/zh/docs3-v2/java-sdk/advanced-features-and-usage/performance/config-connections.md
@@ -5,8 +5,12 @@ linkTitle: "连接控制"
weight: 29
description: "Dubbo 中服务端和客户端的连接控制"
---
+## 特性说明
-## 服务端连接控制
+## 使用场景
+
+## 使用方式
+### 服务端连接控制
限制服务器端接受的连接不能超过 10 个 [^1]:
@@ -20,7 +24,7 @@ description: "Dubbo 中服务端和客户端的连接控制"
<dubbo:protocol name="dubbo" accepts="10" />
```
-## 客户端连接控制
+### 客户端连接控制
限制客户端服务使用连接不能超过 10 个 [^2]:
@@ -38,4 +42,3 @@ description: "Dubbo 中服务端和客户端的连接控制"
[^1]: 因为连接在 Server上,所以配置在 Provider 上
[^2]: 如果是长连接,比如 Dubbo 协议,connections 表示该服务对每个提供者建立的长连接数
-