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 14c4d416d0b # 延迟连接 (#1477)
14c4d416d0b is described below
commit 14c4d416d0b9f4c5202c9a91919d63746769de7c
Author: JIAN ZHONG <[email protected]>
AuthorDate: Thu Sep 8 10:43:41 2022 +0800
# 延迟连接 (#1477)
---
.../advanced-features-and-usage/performance/lazy-connect.md | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git
a/content/zh/docs3-v2/java-sdk/advanced-features-and-usage/performance/lazy-connect.md
b/content/zh/docs3-v2/java-sdk/advanced-features-and-usage/performance/lazy-connect.md
index 20875cb71b6..7cabf4b13de 100644
---
a/content/zh/docs3-v2/java-sdk/advanced-features-and-usage/performance/lazy-connect.md
+++
b/content/zh/docs3-v2/java-sdk/advanced-features-and-usage/performance/lazy-connect.md
@@ -5,14 +5,14 @@ linkTitle: "延迟连接"
weight: 30
description: "在 Dubbo 中配置延迟连接"
---
+## 特性说明
+## 使用场景
延迟连接用于减少长连接数。当有调用发起时,再创建长连接。
+## 使用方式
```xml
<dubbo:protocol name="dubbo" lazy="true" />
```
-{{% alert title="提示" color="primary" %}}
-该配置只对使用长连接的 dubbo 协议生效。
-{{% /alert %}}
-
+> 该配置只对使用长连接的 dubbo 协议生效。