To get some gain on performance, I'm using apache mod_wsgi with twisted.
So I'm not starting a reactor.listenTCP(...)'', I just have a file .wsgi that apache will call when acessed
But how to use the assync methods of twisted?:
example of .wsgi:
def application(environ, start_response):
status = '200 OK'
output = 'Pong!'
response_headers = [('Content-type', 'text/plain'),
('Content-Length', str(len(output)))]
start_response(status, response_headers)
# How do I call a assyn blocking method from here?!
# like deferToThread(object.send, environ).
return [output]
resource = WSGIResource(reactor, reactor.getThreadPool(), application)
My biggest doubt is about the structure of the code, how do I manage to use instantiated objects from this wsgi?!
I'm really having a hard time finding any good example (beyond the 'hello world). Any hint will help...