FastCGI

About

FastCGI is an open extension to CGI. FastCGI is a replacement for “standard” CGI scripts.

In old-school CGI, the web server would start up your script, send it a request, wait for a response, then the script would terminate.

FastCGI's main feature is that the script doesn't die, but hangs around, waiting for another request.

  • No process creation for each request
  • The interpreted script is not reloaded, etc.

Library

Documentation / Reference





Discover More
Phpinfo Fastcgi
How to install the Apache FastCgi module on Windows ?

This article will show you how to install FastCgi on a Apache HTTP server thanks to the FastCGI Module of Apache It's a configuration step in the Windows installation. The FastCgI module is not...
Card Puncher Data Processing
PHP - FastCGI Process Manager (FPM)

The implementation of fastcgi for php is called php-fpm where FPM stands for FastCGI Process Manager. fastcgi FPM is an alternative PHP FastCGI implementation with some additional features (mostly) useful...
Web - CGI (Common Gateway Interface)

Common Gateway Interface (CGI) is the oldest interface, and is supported by nearly every web server out of the box. The web server will: parse the HTTP request into environment variable call the...



Share this page:
Follow us:
Task Runner