Apache PreforkWorker和Event三种MPM简单分析
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Apache PreforkWorker和Event三种MPM简单分析相关的知识,希望对你有一定的参考价值。
(1) Prefork MPM
(优点) :使用多个子进程,每个子进程只有一个线程来处理一个 http 连接,不用担心线程安全问题
缺点:内存消耗大,不擅长处理高并发环境,使用keep-alive长连接时要等到超时才会释放线程
(2) Worker MPM :
优点:使用多个子进程,每个子进程有多个线程,可以处理海量请求,
缺点:是假如一个线程崩溃,整个进程就会连同其任何线程一起死掉
(3) Event MPM :这种工作模式主要用于 keep-alive 长连接问题,会有一个专门的线程来管理这些 keep-alive 类型的线程
如下是我认为写的具体的文章:
http://blog.csdn.net/ccscu/article/details/70182476
http://www.cnblogs.com/fnng/archive/2012/11/20/2779977.html
以上是关于Apache PreforkWorker和Event三种MPM简单分析的主要内容,如果未能解决你的问题,请参考以下文章
Apache三种MPM分析: PreforkWorker和Event
Apache PreforkWorker和Event三种MPM分析
Apache PreforkWorker和Event三种MPM简单分析
apache_conf 来自http://drupal.stackexchange.com/questions/74778/ckeditor-removes-class-names-even-with
apache_conf 来自http://drupal.stackexchange.com/questions/74778/ckeditor-removes-class-names-even-with
apache_conf 来自http://drupal.stackexchange.com/questions/74778/ckeditor-removes-class-names-even-with