PHP - 处理上传流量
我正在构建一个桌面应用程序,让人们通过 PHP 上传图像。 如果很多用户想要同时上传图像,我担心一个 PHP 文件是否能够处理它。
我是否应该创建多个实例(例如 upload-gate-1.php、upload-gate-2.php 等)来部署流量?
谢谢, 乌里
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的网络服务器将为您处理这个问题:它将根据需要创建尽可能多的 upload-gate.php 活动实例,每个实例都独立于其他实例。
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.