From dcbdf7b9fbdecdbb97909cb58e2a5a074587bbb5 Mon Sep 17 00:00:00 2001 From: guide Date: Mon, 29 Mar 2021 11:00:56 +0800 Subject: [PATCH] [refractor]RPC --- README.md | 7 ++++--- .../system-design/distributed-system/rpc/Dubbo.md | 0 2 files changed, 4 insertions(+), 3 deletions(-) rename "docs/system-design/distributed-system/rpc/\345\205\263\344\272\216Dubbo\347\232\204\351\207\215\350\246\201\347\237\245\350\257\206\347\202\271.md" => docs/system-design/distributed-system/rpc/Dubbo.md (100%) diff --git a/README.md b/README.md index b48b8af0..31cbf71a 100644 --- a/README.md +++ b/README.md @@ -235,9 +235,10 @@ CAP 也就是 Consistency(一致性)、Availability(可用性)、Partiti RPC 让调用远程服务调用像调用本地方法那样简单。 -1. [Dubbo 总结:关于 Dubbo 的重要知识点](docs/system-design/distributed-system/rpc/关于Dubbo的重要知识点.md) -2. [服务之间的调用为啥不直接用 HTTP 而用 RPC?](docs/system-design/distributed-system/rpc/服务之间的调用为啥不直接用HTTP而用RPC.md) -3. [一款基于 Netty+Kyro+Zookeeper 实现的自定义 RPC 框架](https://github.com/Snailclimb/guide-rpc-framework) +Dubbo 是一款国产的 RPC 框架,由阿里开源。相关阅读: + +- [Dubbo 常见问题总结](docs/system-design/distributed-system/rpc/Dubbo.md) +- [服务之间的调用为啥不直接用 HTTP 而用 RPC?](docs/system-design/distributed-system/rpc/服务之间的调用为啥不直接用HTTP而用RPC.md) #### API 网关 diff --git "a/docs/system-design/distributed-system/rpc/\345\205\263\344\272\216Dubbo\347\232\204\351\207\215\350\246\201\347\237\245\350\257\206\347\202\271.md" b/docs/system-design/distributed-system/rpc/Dubbo.md similarity index 100% rename from "docs/system-design/distributed-system/rpc/\345\205\263\344\272\216Dubbo\347\232\204\351\207\215\350\246\201\347\237\245\350\257\206\347\202\271.md" rename to docs/system-design/distributed-system/rpc/Dubbo.md -- GitLab