On Jan 18, 2005, at 03:46, Liam Clarke wrote:

Curious - what's mod_python?

A Python module for the Apache web server, that among other things addresses the main shortcoming of CGI: mod_python (and mod_perl, mod_php and mod_ruby, for that matter) keeps the interpreter into memory (and as part of the server, so to speak). The server doesn't need to load and initialize a new interpreter each time a page is requested. This yields a tremendous speed increase (speaking in requests/second there, not in script execution time), and ensures that mod_python scales up *much* better than CGI.


http://www.modpython.org/

-- Max
maxnoel_fr at yahoo dot fr -- ICQ #85274019
"Look at you hacker... A pathetic creature of meat and bone, panting and sweating as you run through my corridors... How can you challenge a perfect, immortal machine?"


_______________________________________________
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor

Reply via email to