node.js - Technology to minimize latency in real-time connection -


I want to transmit some telemetry data from a car to a web app. Hardware is taken care of already, it will send data to every 100ms through an Android device.

I was wondering what is the low latency, web sites (socket.io) or VBRC (data channel)?

Thanks

WebSocket works on TCP, oriented for customer and server communication .

Works on UDP It seems that it is more oriented for peer-2 peer communication.

I do not think there is a big difference in the time of delay. It is up to you whether you need a reliable delivery (TCP) or not (UDP).

Comments

Popular posts from this blog

Java - Error: no suitable method found for add(int, java.lang.String) -

java - JPA TypedQuery: Parameter value element did not match expected type -

c++ - static template member variable has internal linkage but is not defined -