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

c# - passing input text from view to contoller with FacebookContext using Facebook app -

ios - Does Core Data autoupdate a many to many relationship on saving -

Calling a C++ function from C# by passing a string with variable size to it -