threaded http server

bharath venkatesh bharathv6 at gmail.com
Wed Feb 20 07:17:01 EST 2008


hi
   i want to create fast n efficient http server which serve multiple
client  concurrently .. so i thought of threading the http server  using

class HTTPServer(SocketServer.ThreadingMixIn, BaseHTTPServer.HTTPServer):
      pass:

as this creates an  threaded version of  http server ... but i read in  one
of   the postings  in mailing list that it will create a deadlock . the
following postings can found at
http://mail.python.org/pipermail/python-list/2001-January/064088.html

as mentioned in that posting log_request must be redefined...  can any one
tell me how to redefine  it so that it creates a  threading behavior for   fast
n efficient http server. or will it be  ok just to pass the definition as
done in the posting mentioned above  and still create an efficient threading
behavior
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/python-list/attachments/20080220/640f0b03/attachment.html>


More information about the Python-list mailing list