0

Is there any performance gain sending many files versus one file over TCP/IP?

(Aside from being able to only resend failed files if the connection goes down)

BanksySan
  • 27,362
  • 33
  • 117
  • 216

1 Answers1

1

There is a 3-packet connect overhead and a 4-packet close overhead. The latter is asynchronous. The effect asymptotes to zero as file size increases.

user207421
  • 305,947
  • 44
  • 307
  • 483