We build a small file sharing webapp in our intranet. Sometimes we need to transfer a big file like 700M. First we use django and its built in server and when we upload, the server stops to serve other requests.
Then I tried the web2py with rocket and I found it's more robust. Plus, at first we also tried Flask. but I found the debug part of it is not good to use. we use http to upload a file and the speed is only 40k/s。What can we do to impove the upload speed using http? We only use it in our intranet, and I think maybe the speed can be faster.

