hi<br> i want to create fast n efficient http server which serve multiple client concurrently .. so i thought of threading the http server using <span style="font-family: arial,sans-serif;"><br><br>c<span style="font-family: times new roman,serif;">lass HTTPServer(SocketServer.ThreadingMixIn,</span></span> BaseHTTPServer.HTTPServer):<br>
<font size="2"><span style="font-family: times new roman,serif;"></span><span style="font-family: times new roman,serif;"> pass:<br><br>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 <a href="http://mail.python.org/pipermail/python-list/2001-January/064088.html">http://mail.python.org/pipermail/python-list/2001-January/064088.html</a><br>
<br>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 </span></font>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 <br>
<font size="2"><span style="font-family: times new roman,serif;"><br></span></font>