Могу ли я использовать Twisted и mod_wsgi вместе, чтобы попытаться повысить производительность?
Так как я не запускаю реактор.listenTCP (...), как я могу использовать асинхронные методы витой?:
Что я пробовал:
> server.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 twisted async method from here?!
# like deferToThread(object.send, environ).
return [output]
resource = WSGIResource(reactor, reactor.getThreadPool(), application)