Skip to content

Commit

Permalink
Update why-use-rpc.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Snailclimb committed Nov 3, 2019
1 parent 28d955d commit e30a978
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions docs/system-design/data-communication/why-use-rpc.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,10 @@ Server: Apache 0.84

**使用自定义 TCP 协议进行传输就会避免上面这个问题,极大地减轻了传输数据的开销。**这也就是为什么通常会采用自定义 TCP 协议的 RPC 来进行进行服务调用的真正原因。初次之外,成熟的 RPC 框架还提供好了“服务自动注册与发现”、"智能负载均衡"、“可视化的服务治理和运维”、“运行期流量调度”等等功能,这些也算是选择 RPC 进行服务注册和发现的一方面原因吧!

**相关阅读:**

- http://www.ruanyifeng.com/blog/2016/08/http.html (HTTP 协议入门- 阮一峰)

###一个常见的错误观点

很多文章中还会提到说 HTTP 协议相较于自定义 TCP 报文协议,增加的开销在于连接的建立与断开,但是这个观点已经被否认,下面截取自知乎中一个回答,原回答地址:https://www.zhihu.com/question/41609070/answer/191965937。
Expand All @@ -86,12 +90,5 @@ Server: Apache 0.84

初次之外,还需要注意的一点是 Spring Cloud Netflix 并没有使用 RPC 框架来进行不同服务之间的调用,而是使用 HTTP 协议进行调用的,速度虽然不比 RPC ,但是使用 HTTP 协议也会带来其他很多好处(这一点,可以自行查阅相关资料了解)。

## 参考链接



## 相关文章

- http://www.ruanyifeng.com/blog/2016/08/http.html (HTTP 协议入门- 阮一峰)


0 comments on commit e30a978

Please sign in to comment.