1
Twistedとmod_wsgiを一緒に使用してパフォーマンスを向上させることはできますか?TwistedでWSGIを使用する
:私はreactor.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)