Can someone tell me if 16 running processes of php-cgi.exe is normal behavior, and if not what might causing that? The server gets a lot of requests and uses HttpRequestPool for sending parallel requests.
Can someone tell me if 16 running processes of php-cgi.exe is normal behavior, and
Share
If you are getting a decent amount of traffic that could be normal. PHP fCGI opens a new task for each request but also reuses currently open tasks to speed the process up and save resources.