nagisa-kunhah commented on code in PR #26:
URL: 
https://github.com/apache/dubbo-go-extensions/pull/26#discussion_r3890023452


##########
filter/adaptivesvc/README_CN.md:
##########
@@ -0,0 +1,90 @@
+# 自适应服务限流
+
+[English](./README.md) | 简体中文
+
+dubbo-go 自适应服务限流扩展。该扩展包含提供者侧 adaptive service filter、消费者侧 adaptive service 
cluster、P2C 负载均衡,以及 P2C 使用的本地方法级指标。
+
+该扩展保留当前 dubbo-go 内置实现的 key 和行为,同时允许应用显式依赖 
`github.com/apache/dubbo-go-extensions`。
+
+## 安装
+
+```bash
+go get github.com/apache/dubbo-go-extensions/imports/adaptivesvc
+```
+
+导入 `github.com/apache/dubbo-go-extensions/imports/adaptivesvc`,即可同时注册
+provider filter、consumer cluster 和 P2C loadbalance。
+
+## 提供者侧
+
+聚合导入会注册 provider filter;也可以单独通过副作用导入注册:
+
+```go
+import (
+    _ "github.com/apache/dubbo-go-extensions/filter/adaptivesvc"
+)
+```
+
+配置 provider filter key:
+
+```text
+padasvc
+```
+

Review Comment:
   补充了下,这个是dubbo-go provider adaptive-service filter使用的注册 key



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to