在 PHP 中使用多个 CPU

发布于 2024-12-05 11:48:19 字数 149 浏览 0 评论 0原文

我在带有两个双核处理器的 Linux 操作系统服务器上运行我的应用程序。

问题是,在“top”linux 命令中,第二个处理器的负载不会超过 10%,而第一个处理器在某些脚本上会保持 100% 3-4 秒。

我怎样才能利用我的服务器这两个CPU的能力?

i run my app on a linux os server with two dual core processors.

The thing is that on 'top' linux command, the second processor isn't loaded more than 10%, while the first one stays at 100% for 3-4 seconds on some scripts.

How can i use the power of those two CPU's of my server?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

碍人泪离人颜 2024-12-12 11:48:19

使用多核的唯一方法是运行多个线程或进程。

对于 Web 应用程序,每个运行脚本通常有一个 PHP 进程,因此情况已经如此:多个请求将自动使用多个内核。

虽然您不能对同一请求使用多个核心,但这通常对于网络应用程序来说并不重要。

The only way to use multiple cores is to run multiple threads or processes.

For web applications there is usually one PHP process per running script, so this is already the case: Multiple requests will use multiple cores automatically.

You can't use multiple cores for the same request though, but usually this doesn't matter for a web app.

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