I am new to FastCGI and want to use this platform to speed up my existing vanilla CGI (perl) programs.
However, when reading the FastCGI / Apache FAQ , I can configure my scripts (after converting to separate initialization / request sections) in the Apache configuration as one of the following:
1) dynamic
2) static "inside the SetHandler frame"
3) static "inside the AddHandler scope"
4) static "outside the scope of Set / AddHandler" (or, I think, it can be called "external")
I got confused in these 4 options, and I assume that by default βdynamicβ is what I should go with, but can anyone explain the pros and cons of this data?
source share