On Wed, 2006-06-07 at 10:38 -0700, kaktusz wrote: > will have a look at the wiki you have proposed... am C++/ Java man, but > wanted to stay for little stuff in the script world, but lost my patiance > littlebit:), but not tested any java on Dreamhost > about python/trac: > On my "dear" dreamhost, python looks like running also as cgi, but as I said > much faster than php.. > the /trac/cgi-bin/trac.fcgi is called... or is this calling later compiled > .. sorry I am "new" to to python.
The .fcgi is FastCGI, which is (if you couldn't tell) faster. Instead of CGI which starts a new process for every request, the sever starts the FastCGI process and keeps it in memory, using sockets to send new requests. http://www.fastcgi.com/ -- Matthew Good <[EMAIL PROTECTED]> _______________________________________________ Trac mailing list [email protected] http://lists.edgewall.com/mailman/listinfo/trac
