>>11839512When looking into what causes the latency in 4g, it seems to be in the communication protocol or the hardware downstream from the tower.
Look up Nagle's algorithm
https://en.wikipedia.org/wiki/Nagle%27s_algorithmThe demonstration of the 4g appears to be sending data in bursts.
Basically the sender is waiting while accumulating data then sending it once the size passes a threshold (this is not good for applications where that data's usability expires while waiting to accumulate)
That video seems more like a demonstration of the concept of latency and less like a comparison between 4g and 5g.
The whole 5g strategy seems to be to increase the bandwidth so the nagle threshold can be set lower resulting in a higher frequency of packets sent (which is better for real time applications) at the cost of data efficiency.