Magento 是线程安全的吗?
有人将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
PHP5 是线程安全的,但 PHP 扩展并不都是线程安全的。因此,在worker-mpm 上运行PHP 应用程序被认为是有害的。 Magento 是一个与其他应用程序一样的 PHP 应用程序,很可能您在某处使用一些 PHP 扩展(GD、Xml 等),并且您无法测试它的线程稳定性(真的很难测试)。
但是你可以做的是使用apache作为worker(确实处理了更多的HTTP请求,对于所有静态文件非常有用),并将PHP推出Apache(因此没有mod_php)。
为此,您必须将 PHP 与 fcgid 或 php-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.