在 PHP 中使用多个 CPU
我在带有两个双核处理器的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用多核的唯一方法是运行多个线程或进程。
对于 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.