What would be the bottleneck for fast performance file upload aside from internet connection of course. HTML 5 have file api for slicing file into chunk. what would make better performance in uploading file from client side to server side e.g:
4GB file slice into
4000 chunks of 1MB file vs
400 chunks of 10 MB file vs
40 chunks of 100MB file vs
4 chunks of 1GB file, if that's even possible together at a time.
I'm not talking about internet connection here. Although that will be the main issue, but I'm sure, there is other thing that will affect the performance. such as, file size or http issue, or maybe upload it one slice sequentially instead of simultaneously at a time or something else...