1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-09-02 13:52:46 +02:00

Update gRPC deffinition (#1368)

* Update gRPC deffinition

I thought that some high-level definition of this would be nice.

* Update content/roadmaps/101-backend/content/109-apis/103-grpc.md

Co-authored-by: Kamran Ahmed <kamranahmed.se@gmail.com>
This commit is contained in:
Julian Insua
2022-08-01 04:19:21 -03:00
committed by GitHub
parent d727ee3394
commit 610901949b

View File

@@ -2,6 +2,8 @@
gRPC is a high-performance, open source universal RPC framework
RPC stands for Remote Procedure Call, there's an ongoing debate on what the g stands for. RPC is a protocol that allows a program to execute a procedure of another program located on another computer. The great advantage is that the developer doesnt need to code the details of the remote interaction. The remote procedure is called like any other function. But the client and the server can be coded in different languages.
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink colorScheme='blue' badgeText='Official Website' href='https://grpc.io/'>gRPC Website</BadgeLink>
<BadgeLink colorScheme='blue' badgeText='Docs' href='https://grpc.io/docs/'>gRPC Docs</BadgeLink>