PHP - Handle upload traffic

125 Views Asked by At

I'm building a desktop app to let people upload images through PHP. If a lot of users want to upload images at the same time I'm worried if one PHP file will handle it.

Should I create multiple instances like upload-gate-1.php, upload-gate-2.php and so on to deploy the traffic?

Thanks, Uli

1

There are 1 best solutions below

1
On BEST ANSWER

Your webserver will take care of this for you: It will create as many ACTIVE instances of upload-gate.php as necessary, each of them independent of the others.