N alternative to cgi/fastcgi

cgifastcgiweb

Just curious to know, is there any other alternative to cgi/fastcgi?

Best Answer

Depends what you want to do. Apache (by default) does not rely on CGI/FASTCGI to execute PHP, Perl or whatever code you want. It integrate the execution of the server side code inside its own processes. It's probably more simply, but also heavier.

So, if you question is: Is there an alternative to FASTCGI to execute server side code outside of the webserver process ? Then I believe the answer is no if you are coding in PHP, Perl or C.

Related Topic