Notes on RPC Framework Design and Implementation
Notes on RPC Framework Design and Implementation Originally published in Chinese on 2022-01-29; this English edition preserves the original scope and technical context. Concept RPC (Remote Procedure Call) is called Remote Procedure Call, which involves using a network to request services from a remote computer: it can be understood as placing part of a program on a remote computer to execute. Through network communication, a call request is sent to the remote computer, where the system resources of the remote computer are used to execute this part of the program, and finally returns the execution result to the remote computer. ...