Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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...

share|improve this question

1 Answer

up vote 6 down vote accepted

You can't.

If you want to use Twisted as your WSGI container, then use Twisted. If you want to use Apache, then use Apache. However, if you use Apache as your WSGI container, then you will not be able to use features from Twisted, because Twisted's event loop is not compatible with the way Apache does network I/O.

What you're doing in the code example is doubly meaningless, as WSGIResource is the glue between Twisted's HTTP server and WSGI; even if you could somehow jam Twisted into a running Apache HTTPD process via mod_wsgi, you would not need a WSGIResource, since apache would be filling that role.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.