Hacker News new | ask | show | jobs
by olefoo 6144 days ago
1. the primary maintainer of mod_wsgi is the primary maintainer of mod_python and his focus is on wsgi

2. WSGI is a standard interface defined for python programs in PEP 333 so you should in theory be able to run your program against the builtin wsgi server that ships in the standard library and get the same results as you would running it on any of the webservers that support the WSGI protocol

1 comments

3. With mod_wsgi, you can easily restart a django app without restarting apache, by touching the wsgi file.
touching the settings file works as well, and almost all of the regular pages will be reloaded as well as soon as you've saved them.

Rarely do you have to do anything other then just saving the file.