I'm running Apache 2 in worker mode with PHP FastCGI. I've read that due to the nature of long-running processes, FastCGI may require some periodic process maintenance.
What is meant by periodic process maintenance?
|
I'm running Apache 2 in worker mode with PHP FastCGI. I've read that due to the nature of long-running processes, FastCGI may require some periodic process maintenance. What is meant by periodic process maintenance? |
|||||||
|
|
"Periodic process maintenance" sounds like a euphemism for "restart." Because the processes are long-lived, memory leaks and other nasties can build up over time to cause the processes to consume more resources than they really need. Periodic restarts will clear that out. Don't create a cron job for this quite yet. Monitor the memory use of the processes and schedule restarts based on reality instead of some cargo-cult inspired schedule. It might not even be needed in your environment. |
|||||
|