Does data size in TCP/UDP make a difference on transmission time
Posted
by
liortal
on Programmers
See other posts from Programmers
or by liortal
Published on 2013-06-29T10:35:56Z
Indexed on
2013/06/29
16:29 UTC
Read the original article
Hit count: 229
While discussing the development of a network component for our game engine, a member of our team suggested that transmitting either 500 bytes or 1k of data using UDP makes no difference from performance perspective of the system (the time it takes to transmit the data).
He actually said that as long as you don't cross the MTU size, the size of the transmitted data doesn't really matter as it's all the same.
Is that true for UDP? what about TCP?
That sounds just plain wrong to me, but i am not a network expert.
*I've been reading about other companies' game networking architectures, and it seems they're all trying to keep transmitted data to a minimum, making my colleague's claims seem even more unreasonable.
© Programmers or respective owner