DEV Community

Discussion on: Hey developers :D, what you think about gRPC it can replace REST?

Collapse
 
avalander profile image
Avalander • Edited

I'm not sure if you mean "can [gRPC] be replaced by REST" or "can [gRPC] replace REST", but my answer in both cases is no. The philosophy of gRPC, or any other RPC protocol, by the way, is to trigger actions on a remote machine, while the philosophy of REST is to access resources in a remote machine.

Some times your domain can be modelled better by resources that are accessed and modified, and some times it works better with actions that are triggered.

The thing is, both RPC and REST have their merits, are useful in different circumstances, and neither is going away anytime soon.