After reading about Data Caching and Performance, I saw an option to enable FastCGI with PHP 5 at my hosting control panel.
I have EE 1.6.3 implemented at a Linux Apache/2.2.8 server, PHP 5 with normal CGI.
As I understand, FastCGI instead of creating a new process for every request, can use a single persistent process which handles many requests over its lifetime.
And I think I have read something about leaving the PHP scripts in memory to reduce access times.
So I don’t know why isn’t this recommended at the “Data Caching and Performance” article.
Is there anything I should be aware of when enabling this feature?
Any other suggestions to improve EE response time/performance?