From: John C. <co...@cc...> - 2008-09-08 23:04:35
|
Albert Graef scripsit: > I must admit that I don't know all that much about web programming, so I > have to ask what's the difference between the ordinary and the fast cgi > interface? The FastCGI interface keeps the language processor running rather than starting a new process for every incoming request, so it is much more lightweight. The web server talks with the processor over a local domain socket. (Unix) or named pipe (Windows; named pipes in Windows are really sockets). The wire protocol is at http://www.fastcgi.com/devkit/doc/fcgi-spec.html ; there are many libraries. -- Take two turkeys, one goose, four John Cowan cabbages, but no duck, and mix them http://www.ccil.org/~cowan together. After one taste, you'll duck co...@cc... soup the rest of your life. --Groucho |