Google
 
   
Login
Username:

Password:


Lost Password?

Register now!
Search
Main Menu
top books
Polls
What do you think about php-deluxe.net?
Excellent!
Cool
Hmm..not bad
What the hell is this?
encyclopedia
recommendation
compare webbrowser
Freenet DSL
Who's Online
6 user(s) are online (6 user(s) are browsing encyclopedia)

Members: 0
Guests: 6

more...
browser tip
Unix Befehle
manual of unix befehle
recommendation!
Sponsored
partner

FastCGI

FastCGI is an extension to Common Gateway Interface that increases speed. Instead of creating a new process every time a page is reloaded, FastCGI will use the same process, queuing up requests. This increases startup speed, at the expense of forcing users to wait for the previous requests to finish. FastCGI also allows programs to get the web server to do certain operations, like reading in a file, before the request is handed over.

Environment information and page requests are sent from the web server to the process over a Transport_Control_Protocol (for remote processes) or a Unix domain sockets (for local processes.) Responses are returned from the process to the web server over the same connection. The connection is closed at the end of a response, but the web server and the process are left standing.

=External link=

*[http://www.fastcgi.com Main Site]