One thing I learned about: What is an RPC API?
RPC is a way to design APIS.
- Focuses on processes: calls a function
- It calls remote functions as if a local service
- Both client and server keep a proxy representation of each other (stub and skeleton)
- Fixed data format
- Client needs to know server functions and parameters
- Can be stateful
🔽🛠️Resources🔽
- The Difference Between RPC and REST by AWS Cloud via @awscloud: https://aws.amazon.com/compare/the-difference-between-rpc-and-rest/
- Remote Procedure Calls (RPC) by Paul Krzyzanowski via @p_k: https://people.cs.rutgers.edu/~pxk/416/notes/15-rpc.html
Top comments (0)
Some comments may only be visible to logged-in visitors. Sign in to view all comments.