So I have built a microservice architecture-based system. My services had to communicate with each other in real time with minimum latency... Which is good for me, gRPC or WebTransport or WebSocket? And why?
My only requirement after speed...
- I need to know instantaneously if the connection breaks
- The connection should always be active, not opening on every message transmission
Edit: I will transmit structured data. Format choice is flexible..
From the information you've given, I'd say gRPC ticks all your boxes.