But I think tornado is a non block web server.
I just test the following simple function:
@webservice(_params=str,_returns=str)
def TestThread(self,a):
time.sleep(5)
return a
and try to run this web service in suds or soapui, I start two thread at once, but it need 10 secs for the second one to finish. Is there some parameters can be set to solve this issue?
Thanks~