This is an automated email from the ASF dual-hosted git repository.
hyunkun 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 7622dc4 fix typo in dubbo-provider file (#523)
7622dc4 is described below
commit 7622dc435b0e2fa16b174f9e5fd5eff0ac406329
Author: withthewind <[email protected]>
AuthorDate: Wed Nov 6 19:13:48 2019 +0800
fix typo in dubbo-provider file (#523)
---
docs/zh-cn/user/references/xml/dubbo-provider.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/zh-cn/user/references/xml/dubbo-provider.md
b/docs/zh-cn/user/references/xml/dubbo-provider.md
index 12254e8..86028b7 100644
--- a/docs/zh-cn/user/references/xml/dubbo-provider.md
+++ b/docs/zh-cn/user/references/xml/dubbo-provider.md
@@ -41,7 +41,7 @@
| proxy | proxy | string | 可选 | javassist | 性能调优 | 生成动态代理方式,可选:jdk/javassist |
2.0.5以上版本 |
| cluster | default.cluster | string | 可选 | failover | 性能调优 |
集群方式,可选:failover/failfast/failsafe/failback/forking | 2.0.5以上版本 |
| deprecated | deprecated | boolean | 可选 | false | 服务治理 |
服务是否过时,如果设为true,消费方引用时将打印服务过时警告error日志 | 2.0.5以上版本 |
-| queues | queues | int | 可选 | 0 | 性能调优 |
线程池队列大小,当线程池满时,排队等待执行的队列大小,建议不要设置,当线程程池时应立即失败,重试其它服务提供机器,而不是排队,除非有特殊需求。 |
2.0.5以上版本 |
+| queues | queues | int | 可选 | 0 | 性能调优 |
线程池队列大小,当线程池满时,排队等待执行的队列大小,建议不要设置,当线程池满时应立即失败,重试其它服务提供机器,而不是排队,除非有特殊需求。 |
2.0.5以上版本 |
| charset | charset | string | 可选 | UTF-8 | 性能调优 | 序列化编码 | 2.0.5以上版本 |
| buffer | buffer | int | 可选 | 8192 | 性能调优 | 网络读写缓冲区大小 | 2.0.5以上版本 |
| iothreads | iothreads | int | 可选 | CPU + 1 | 性能调优 |
IO线程池,接收网络读写中断,以及序列化和反序列化,不处理业务,业务线程池参见threads配置,此线程池和CPU相关,不建议配置。 | 2.0.5以上版本 |