CGI speedup strategies

Fredrik Lundh fredrik at pythonware.com
Wed Sep 1 05:03:11 EDT 1999


Ian Clarke <I.Clarke at strs.co.uk> wrote:
> Has anyone tried actually implementing a Python webserver which just
> starts a new thread and runs a piece of Python code in it every time
> someone makes a HTTP request?  This server could then cache any objects
> (such as files, or SQL connections) in memory to be used by any Python
> scripts (this would obviously require all code to be thread-safe).

http://www.nightmare.com/medusa (non-threaded, ultra-fast)
http://www.zope.org (threaded, based on medusa)

</F>





More information about the Python-list mailing list