PreviousNext

Integrating ASP.NET Core with gRPC

by bill-s, 2020-05-01T03:08:20.685Z

Have you ever dealt with RPC? It stands for Remote Procedure Call, a famous term from distributed computing for when you need to call a service routine from one machine to another. It’s like the basics for anyone who wishes to create REST/SOAP requests or GraphQL architectures. You need to understand a bunch of concepts like parallelism, clusters, network latency, failover, and fallbacks, just to get started.

Read More