现在nginx + fpm 基本成为主流的配置,其中我们比较关注的是pm.max_chindren的配置 首先,我们关注一个设置: pm = static/dynamic , 这个选项是标识fpm子进程的产生模式: static : 表示在fpm运
现在nginx + fpm 基本成为主流的配置,其中我们比较关注的是pm.max_chindren的配置
首先,我们关注一个设置: pm = static/dynamic
,
这个选项是标识fpm子进程的产生模式:
static :表示在fpm运行时直接fork出pm.max_chindren
个worker进程
dynamic:表示,运行时fork出start_servers
个进程,随着负载的情况,动态的调整,最多不超过max_children个进程。
一般