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
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to