
好词典

缩写自Remote Procedure Call(远程过程调用),1970年代由计算机科学家Bruce Jay Nelson提出概念。
❶ 远程过程调用(Remote Procedure Call)的缩写,指计算机程序通过网络请求另一台计算机上的服务,而无需了解底层网络细节的技术。
“The system uses RPC to communicate between the client and server.”
(该系统使用RPC在客户端和服务器之间进行通信。)
“RPC allows functions to be executed on a remote machine as if they were local.”
(RPC允许函数在远程机器上执行,就像它们在本地一样。)
RPC framework — 指实现远程过程调用的软件框架,提供通信协议、序列化等功能,简化分布式系统开发。
“gRPC is a popular RPC framework developed by Google.”
(gRPC是谷歌开发的一个流行的RPC框架。)
RPC call — 指通过远程过程调用协议发起的函数调用请求,通常涉及客户端向服务器发送请求并等待响应。
“The client makes an RPC call to fetch data from the server.”
(客户端发起RPC调用以从服务器获取数据。)