Tuesday, May 21, 2019

RPC With Redis-Based Java Remote Services

What Is RPC?

RPC (Remote Procedure Call) is a technique in distributed computing that involves making a client request in the form of a procedure call to a program running on a remote server.

RPC allows clients and servers to communicate without having to worry about the details of the network or the remote interaction. This allows developers to focus on building software, independent of concerns such as hardware, operating systems, and protocols. RPC is an alternative to other client-server architectures such as REST (representational state transfer).



from DZone.com Feed http://bit.ly/2LXfshI

No comments:

Post a Comment