Home > Backend Development > PHP Tutorial > Is there a direct connection between the number of pm.max children of php-fpm and the concurrency capability?

Is there a direct connection between the number of pm.max children of php-fpm and the concurrency capability?

WBOY
Release: 2016-07-06 13:51:18
Original
1996 people have browsed it

Is there a direct connection between the number of pm.max children of php-fpm and the concurrency capability? Thank you everyone

Reply content:

Is there a direct connection between the number of pm.max children of php-fpm and the concurrency capability? Thank you everyone

Short answer:
pm.max_children = maximum number of concurrencies

Detailed answer:
pm.max_children represents the maximum number of child processes that php-fpm can start. Because php-fpm is a multi-process single-thread synchronization mode, that is, one sub-process can handle at most one request at the same time, so the number of sub-processes is equal to the maximum number of concurrencies.

The number of processes is generally limited by memory, similar to nginx. Calculating this value based on memory is the most reasonable. When it reaches a certain amount, other hardware configurations, such as io, may need to be tested! So the answer is it definitely has an impact

There must be, I saw it before when I checked the high concurrency configuration of Nginx.

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template