PHP - 处理上传流量

发布于 2024-12-25 10:57:01 字数 174 浏览 1 评论 0原文

我正在构建一个桌面应用程序,让人们通过 PHP 上传图像。 如果很多用户想要同时上传图像,我担心一个 PHP 文件是否能够处理它。

我是否应该创建多个实例(例如 upload-gate-1.phpupload-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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

温柔一刀 2025-01-01 10:57:01

您的网络服务器将为您处理这个问题:它将根据需要创建尽可能多的 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文