This is an automated email from the ASF dual-hosted git repository.

liujun 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 6aa964ba57e [majorization] 一致性哈希选址 (#1409)
6aa964ba57e is described below

commit 6aa964ba57ed89719eecec427579367ea7e25fcd
Author: JIAN ZHONG <[email protected]>
AuthorDate: Wed Aug 24 15:24:59 2022 +0800

    [majorization] 一致性哈希选址 (#1409)
---
 .../advanced-features-and-usage/service/consistent-hash.md    | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git 
a/content/zh/docs3-v2/java-sdk/advanced-features-and-usage/service/consistent-hash.md
 
b/content/zh/docs3-v2/java-sdk/advanced-features-and-usage/service/consistent-hash.md
index f114b8363c2..0908f5379a1 100644
--- 
a/content/zh/docs3-v2/java-sdk/advanced-features-and-usage/service/consistent-hash.md
+++ 
b/content/zh/docs3-v2/java-sdk/advanced-features-and-usage/service/consistent-hash.md
@@ -6,6 +6,7 @@ weight: 6
 description: "在负载均衡阶段基于一致性哈希进行选址"
 ---
 ## 特性说明
+
 [Dubbo 
一致性Hash负载均衡实现剖析](/zh/blog/2019/05/01/dubbo-%E4%B8%80%E8%87%B4%E6%80%A7hash%E8%B4%9F%E8%BD%BD%E5%9D%87%E8%A1%A1%E5%AE%9E%E7%8E%B0%E5%89%96%E6%9E%90/)
 
 ## 使用场景
@@ -16,23 +17,23 @@ description: "在负载均衡阶段基于一致性哈希进行选址"
 
 配置一致性哈希的方式有很多,最常见的是:
 
-注解:
+### 注解配置
 
 > @DubboReference(loadbalance = “consistenthash”)
 
-API 配置:
+### API 配置
 
 > referenceConfig.setLoadBalance("consistenthash");
 
-Properties配置:
+### Properties 配置
 
 > dubbo.reference.loadbalance=consistenthash
 
-XML配置:
+### XML 配置
 
 > <dubbo:reference loadbalance=“consistenthash” />
 
-默认采用第一个参数作为哈希 key,如果需要切换参数,可以指定 `hash.arguments` 属性,例如:
+默认采用第一个参数作为哈希 key,如果需要切换参数,可以指定 `hash.arguments` 属性
 
 ```java
 ReferenceConfig<DemoService> referenceConfig = new 
ReferenceConfig<DemoService>();

Reply via email to