Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
2
22a7f0099
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Summer2022
22a7f0099
Commits
17d73c55
Unverified
Commit
17d73c55
authored
5 years ago
by
yì jí
Committed by
GitHub
5 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #91 from zonghaishang/update_readme
update readme.md
parents
28d3c8da
8459becd
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
README.md
+1
-1
1 addition, 1 deletion
README.md
README_CN.md
+70
-70
70 additions, 70 deletions
README_CN.md
with
71 additions
and
71 deletions
README.md
+
1
−
1
View file @
17d73c55
...
...
@@ -31,7 +31,7 @@ Finished List:
-
Codec: JsonRPC v2(√), Hessian v2(√)
-
Registry: ZooKeeper(√)
-
Cluster Strategy: Failover(√)
-
Load Balance: Random(√)
-
Load Balance: Random(√)
, RoundRobin(√), LeastActive(√)
-
Filter: Echo Health Check(√)
Working List:
...
...
This diff is collapsed.
Click to expand it.
README_CN.md
+
70
−
70
View file @
17d73c55
# Apache Dubbo-go [English](./README.md) #
[

](https://travis-ci.org/apache/dubbo-go)
[

](https://codecov.io/gh/apache/dubbo-go)
---
Apache Dubbo Go 语言实现
## 证书 ##
Apache License, Version 2.0
## 发布日志 ##
[
v1.0.0 - 2019年5月29日 兼容dubbo v2.6.5 版本
](
https://github.com/apache/dubbo-go/releases/tag/v1.0.0
)
## 工程架构 ##
基于dubbo的extension模块和分层的代码设计(包括 protocol layer, registry layer, cluster layer, config 等等)。我们的目标是:你可以对这些分层接口进行新的实现,并通过调用 extension 模块的“ extension.SetXXX ”方法来覆盖 dubbo-go [同 go-for-apache-dubbo ]的默认实现,以完成自己的特殊需求而无需修改源代码。同时,欢迎你为社区贡献有用的拓展实现。

关于详细设计请阅读
[
code layered design
](
https://github.com/apache/dubbo-go/wiki/dubbo-go-V1.0-design
)
## 功能列表 ##
实现列表:
-
Role: Consumer(√), Provider(√)
-
Transport: HTTP(√), TCP(√)
-
Codec: JsonRPC v2(√), Hessian v2(√)
-
Registry: ZooKeeper(√)
-
Cluster Strategy: Failover(√)
-
Load Balance: Random(√)
-
Filter: Echo Health Check(√)
开发中列表:
-
Cluster Strategy: Failfast/Failsafe/Failback/Forking
-
Load Balance: RoundRobin/LeastActive/ConsistentHash
-
Filter: TokenFilter/AccessLogFilter/CountFilter/ActiveLimitFilter/ExecuteLimitFilter/GenericFilter/TpsLimitFilter
-
Registry: etcd/k8s/consul
任务列表:
-
routing rule (dubbo v2.6.x)
-
metrics (dubbo v2.7.x) waiting dubbo's quota
-
dynamic configuration center & metadata center (dubbo v2.7.x)
-
tracing (dubbo ecosystem)
你可以通过访问
[
roadmap
](
https://github.com/apache/dubbo-go/wiki/Roadmap
)
知道更多关于 dubbo-go 的信息
## 快速开始 ##
这个子目录下的例子展示了如何使用 dubbo-go 。请仔细阅读
[
examples/README.md
](
https://github.com/apache/dubbo-go/blob/develop/examples/README.md
)
学习如何处理配置并编译程序。
## 性能测试 ##
性能测试项目是
[
go-for-apache-dubbo-benchmark
](
https://github.com/dubbogo/go-for-apache-dubbo-benchmark
)
关于 dubbo-go 性能测试报告,请阅读
[
dubbo benchmarking report
](
https://github.com/apache/dubbo-go/wiki/pressure-test-report-for-dubbo
)
&
[
jsonrpc benchmarking report
](
https://github.com/apache/dubbo-go/wiki/pressure-test-report-for-jsonrpc
)
## [User List](https://github.com/apache/dubbo-go/issues/2)

## Stargazers
[

](https://starchart.cc/apache/dubbo-go)
# Apache Dubbo-go [English](./README.md) #
[

](https://travis-ci.org/apache/dubbo-go)
[

](https://codecov.io/gh/apache/dubbo-go)
---
Apache Dubbo Go 语言实现
## 证书 ##
Apache License, Version 2.0
## 发布日志 ##
[
v1.0.0 - 2019年5月29日 兼容dubbo v2.6.5 版本
](
https://github.com/apache/dubbo-go/releases/tag/v1.0.0
)
## 工程架构 ##
基于dubbo的extension模块和分层的代码设计(包括 protocol layer, registry layer, cluster layer, config 等等)。我们的目标是:你可以对这些分层接口进行新的实现,并通过调用 extension 模块的“ extension.SetXXX ”方法来覆盖 dubbo-go [同 go-for-apache-dubbo ]的默认实现,以完成自己的特殊需求而无需修改源代码。同时,欢迎你为社区贡献有用的拓展实现。

关于详细设计请阅读
[
code layered design
](
https://github.com/apache/dubbo-go/wiki/dubbo-go-V1.0-design
)
## 功能列表 ##
实现列表:
-
Role: Consumer(√), Provider(√)
-
Transport: HTTP(√), TCP(√)
-
Codec: JsonRPC v2(√), Hessian v2(√)
-
Registry: ZooKeeper(√)
-
Cluster Strategy: Failover(√)
-
Load Balance: Random(√)
, RoundRobin(√), LeastActive(√)
-
Filter: Echo Health Check(√)
开发中列表:
-
Cluster Strategy: Failfast/Failsafe/Failback/Forking
-
Load Balance: RoundRobin/LeastActive/ConsistentHash
-
Filter: TokenFilter/AccessLogFilter/CountFilter/ActiveLimitFilter/ExecuteLimitFilter/GenericFilter/TpsLimitFilter
-
Registry: etcd/k8s/consul
任务列表:
-
routing rule (dubbo v2.6.x)
-
metrics (dubbo v2.7.x) waiting dubbo's quota
-
dynamic configuration center & metadata center (dubbo v2.7.x)
-
tracing (dubbo ecosystem)
你可以通过访问
[
roadmap
](
https://github.com/apache/dubbo-go/wiki/Roadmap
)
知道更多关于 dubbo-go 的信息
## 快速开始 ##
这个子目录下的例子展示了如何使用 dubbo-go 。请仔细阅读
[
examples/README.md
](
https://github.com/apache/dubbo-go/blob/develop/examples/README.md
)
学习如何处理配置并编译程序。
## 性能测试 ##
性能测试项目是
[
go-for-apache-dubbo-benchmark
](
https://github.com/dubbogo/go-for-apache-dubbo-benchmark
)
关于 dubbo-go 性能测试报告,请阅读
[
dubbo benchmarking report
](
https://github.com/apache/dubbo-go/wiki/pressure-test-report-for-dubbo
)
&
[
jsonrpc benchmarking report
](
https://github.com/apache/dubbo-go/wiki/pressure-test-report-for-jsonrpc
)
## [User List](https://github.com/apache/dubbo-go/issues/2)

## Stargazers
[

](https://starchart.cc/apache/dubbo-go)
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment