Google and Python

David wizzardx at gmail.com
Fri Sep 21 15:27:48 EDT 2007


> OK, thanks. Would you know what technique the custom web server uses
> to invoke a C++ app (ditto for Java and Python) CGI is supposed to be
> too slow for large sites.

For large sites you would have modules loaded into your web server so
that executables don't have to be shelled for each request.

Another method is for the apps to run continuously and serve on non-80
port (or on 80 from another host), and your main web server on port 80
reverse proxies to it when appropriate.



More information about the Python-list mailing list