Apache MPM 방식 Prefork / Worker
Apache MPM 방식 Prefork / Worker Prefork는 일반적으로 Single CPU 또는 Dual CPU에서 성능이 좋고 Worker는 일반적으로 멀티 CPU 시스템에서 성능이 좋다. Prefork
1 2 3 4 5 6 7 |
<IfModule mpm_prefork_module> StartServers 5 MinSpareServers 5 MaxSpareServers 10 MaxClients 150 MaxRequestsPerChild 0 </IfModule> |
Worker
1 2 3 4 5 6 7 8 |
<ifmodule mpm_worker_module> StartServers 2 MaxClients 150 MinSpareThreads 25 MaxSpareThreads 75 ThreadsPerChild 25 MaxRequestsPerChild 0 </ifmodule> |
Apache MPM 이란? MPM (Multi-Processing Module) : 다중 처리 모듈 ☞ apache 가 … Continue reading