The Wayback Machine - https://web.archive.org/web/20211022223734/https://github.com/topics/rpc
Skip to content
#

Remote Procedure Call (RPC)

rpc logo

Remote procedure call (RPC) is when a computer program causes a procedure to execute in a different address space (commonly on another computer on a shared network), which is coded as if it were a normal (local) procedure call, without the programmer explicitly coding the details for the remote interaction.

Here are 2,298 public repositories matching this topic...

advanced-java

😮 Core Interview Questions & Answers For Experienced Java(Backend) Developers | 互联网 Java 工程师进阶知识完全扫盲:涵盖高并发、分布式、高可用、微服务、海量数据处理等领域知识
  • Updated Oct 21, 2021
  • Java
zyearn
zyearn commented Aug 19, 2020

HealthCheckThread is replaced by StartHealthCheck function in socket.cpp, but some of the docs/comments are not modified correspondingly. There are 3 files that HealthCheckThread is involved in:

  • test/brpc_socket_unittest.cpp(3 occurrences)
  • docs/cn/load_balancing.md(1 occurrence)
  • src/brpc/socket.h(1 occurrence)

All sentences with 'HealthCheckThread' should be rewritten to sync with the

ikhoon
ikhoon commented Jul 19, 2021

JSON is the dominant exchange format for REST API.
However, Armeria's WebClient does not provide any JSON-specific APIs.
I believe it should be useful additions if we provide:

WebClient client = WebClient.of();
// Send a serialized JSON object with "applicaiton/json"
HttpResponse response = client.postJson("/items", new MyItem()); 
HttpResponse response = client.putJson("/items"
Wikipedia
Wikipedia