Magento 是线程安全的吗?

发布于 2024-11-09 21:21:25 字数 116 浏览 0 评论 0原文

有人将 Magento 与 Apache Worker MPM 一起使用吗?

我读过关于使用worker而不是prefork的稳定性和安全性的相互冲突的报告,但也读到worker比prefork快得多。

Is anyone using Magento with Apache worker MPM?

I've read conflicting reports of stability and security using worker instead of prefork, but have also read that worker is much faster than prefork.

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

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

发布评论

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

评论(1

再见回来 2024-11-16 21:21:25

PHP5 是线程安全的,但 PHP 扩展并不都是线程安全的。因此,在worker-mpm 上运行PHP 应用程序被认为是有害的。 Magento 是一个与其他应用程序一样的 PHP 应用程序,很可能您在某处使用一些 PHP 扩展(GD、Xml 等),并且您无法测试它的线程稳定性(真的很难测试)。

但是你可以做的是使用apache作为worker(确实处理了更多的HTTP请求,对于所有静态文件非常有用),并将PHP推出Apache(因此没有mod_php)。

为此,您必须将 PHP 与 fcgidphp-fpm 一起使用,用几句话来说,这是现代版本的 cgi。

PHP5 is thread-safe, but PHP extensions aren't all thread-safe. So it's considered harmfull to run a PHP application on a worker-mpm. And Magento is a PHP application like any other, chances are that you are using some PHP extensions somewhere (GD, Xml, etc) and that you can't test it for thread stability (really hard to test).

But what you can do is use apache as worker (really a lot more HTTP request handled, very useful for all static files), and push PHP out of Apache (so with no mod_php).

For that you will have to use PHP with fcgid or php-fpm, that is modern version of cgi to say it in a few words.

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