Python timed file upload -


I have a python script that accepts a file from the user and saves it.

Is it possible not to upload the file immediately, but to raise it up and when the server has less load to upload it.

Can it move the file to the browser storage area or move the file to the hard drive and move the user's RAM

If your website is really heavily weighted, then a lot of users upload files once, it can be time to profile your code, can use multiple servers, or Maybe use a different upload server to accept files and then schedule the transfer to your main server later.


Comments

Popular posts from this blog

windows - Heroku throws SQLITE3 Read only exception -

lex - Building a lexical Analyzer in Java -

python - rename keys in a dictionary -