私はFastCGIを初めて使用し、このプラットフォームを使用して既存のバニラCGI(perl)プログラムを高速化することを検討しています。
ただし、FastCGI / Apache FAQを読むと、Apache構成で次のいずれかとしてスクリプトをセットアップできるようです(個別の初期化/要求セクションを使用するように変換された後)。
1)動的
2)静的「SetHandlerのスコープ内」
3) static "inside the scope of the AddHandler"
4) static "outside the scope of the Set/AddHandler" (or, I think, this can be called 'external')
I am confused about those 4 options, and am assuming the default of 'dynamic' is what I should go with, but could someone explain the pros/cons of these?