PHP_FCGI_MAX_REQUESTS Solves Job Cleanup Issues Alan Seiden

​One of PHP’s strengths is that each PHP job or process cleans itself up after every request. This makes PHP very reliable and stable. On occasion, though, an extension may have a bug that leaks memory or causes other problems over time. If that happens, PHP’s FastCGI settings provide a solution. PHP_FCGI_MAX_REQUESTS A setting in fastcgi.conf, PHP_FCGI_MAX_REQUESTS, determines how many requests a PHP job should process before ending and restarting itself. When PHP_FCGI_MAX_REQUESTS is the default of zero (0), each job will handle an unlimited number of requests. When PHP_FCGI_MAX_REQUESTS is greater than zero, the job will restart after that…
The post PHP_FCGI_MAX_REQUESTS Solves Job Cleanup Issues appeared first on Seiden Group. Read More 

Verified by MonsterInsights