python - Using Django with mod_wsgi -


What happens when you use Django with mod_wsgi when a user requests a browser from the server? Does Apache load its own app dezzgo when it starts and is running in a separate process? Is it making a new Python process for every HTTP request?

In embedded mode, part of the Django app is the Httpd worker's daemon mode, Django app is a separate process And the httpd worker communicates with it on a socket. In either case, the WSGI interface is the same.


Comments