1
0
mirror of https://github.com/chai2010/advanced-go-programming-book.git synced 2025-05-24 04:22:22 +00:00

ch4-01: 状态更新

This commit is contained in:
chai2010 2018-06-28 17:02:57 +08:00
parent 02960ffd3f
commit f76de3b74b
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@
* [3.7. 例子Goroutine ID](ch3-asm/ch3-07-goroutine-id.md)
* [3.8. 补充说明](ch3-asm/ch3-08-faq.md)
* [第四章 RPC和Protobuf](ch4-rpc/readme.md)
* [4.1. RPC入门(Doing)](ch4-rpc/ch4-01-rpc-intro.md)
* [4.1. RPC入门](ch4-rpc/ch4-01-rpc-intro.md)
* [4.2. Protobuf简介(TODO)](ch4-rpc/ch4-02-pb-intro.md)
* [4.3. protorpc(TODO)](ch4-rpc/ch4-03-protorpc.md)
* [4.4. grpc(TODO)](ch4-rpc/ch4-04-grpc.md)

View File

@ -1,4 +1,4 @@
# 4.1. RPC入门(Doing)
# 4.1. RPC入门
RPC是远程过程调用的简称是分布式系统中不同节点间流行的交互方式。在互联网时代RPC已经是一个不可或缺的基础构件。因此Go语言的标准库提供了一个简单的RPC实现我们将以此为入口学习RPC的各种用法。