我有一个64位的debian 6.我想装灯.在某些网站上,我发现:
apt-get install apache2
在其他一些方面:
apt-get install apache-mpm-prefork
我应该选择哪一个?
谢谢
解决方法
海报可能对以下原因感兴趣:
> prefork:每个请求都有自己的(内存分离的)进程
> worker:多线程Apache,使用线程而不是进程,通常比prefork更快,并且可能使用更少的内存.
由于PHP不是线程安全的,因此common suggestion将使用“prefork”MPM安装Apache. Apache MPM之间的差异:http://httpd.apache.org/docs/2.0/en/mod/#core