mod_wsgi daemon mode vs threaded fastcgi

Posted by t0ster on Stack Overflow See other posts from Stack Overflow or by t0ster
Published on 2010-04-07T10:46:42Z Indexed on 2010/04/08 11:53 UTC
Read the original article Hit count: 263

Filed under:
|
|
|
|

Can someone explain the difference between apache mod_wsgi in daemon mode and django fastcgi in threaded mode. They both use threads for concurrency I think. Supposing that I'm using nginx as front end to apache mod_wsgi.

UPDATE:

I'm comparing django built in fastcgi(./manage.py method=threaded maxchildren=15) and mod_wsgi in 'daemon' mode(WSGIDaemonProcess example threads=15). They both use threads and acquire GIL, am I right?

© Stack Overflow or respective owner

Related posts about python

Related posts about mod-wsgi