I'm using a monitor.py script which monitors any .py files for a change and triggers a reload in case one is changed. This is a great way to stay away from touching the wsgi script any time you change something. I recommend this for development process only.
Read here<http://stackoverflow.com/questions/1093732/apache-django-mod-wsgi-auto-reload> . Gabriel luni, 18 februarie 2013, 17:21:41 UTC+2, psjinx a scris: > > Hey, > > so touching wsgi.py will make it reload? > > > Please have a look at http://en.wikipedia.org/wiki/Touch_(Unix) > > *touch* is a standard Unix <http://en.wikipedia.org/wiki/Unix> > program<http://en.wikipedia.org/wiki/Computer_program> used >> to change a file <http://en.wikipedia.org/wiki/Computer_file>'s access >> and modification timestamps <http://en.wikipedia.org/wiki/System_time>. >> It is also used to create a new empty file. > > > Since, timestamp of is changed, server thinks that actual wsgi script has > changed. > > Detection of the change in the script file will occur at the time of the >> first request to arrive after the change has been made. The way that the >> restart is performed does not affect the handling of the request, with it >> still being processed once the daemon process has been restarted. > > > This is standard deployment practice. > > Sincerely, > Pankaj Singh > http://about.me/psjinx > > > On Mon, Feb 18, 2013 at 8:43 PM, frocco <[email protected] <javascript:>>wrote: > >> Thank you, so touching wsgi.py will make it reload? >> That's great, I am also learning linux. :-) >> >> >> On Monday, February 18, 2013 9:26:40 AM UTC-5, frocco wrote: >>> >>> Hello, >>> >>> In PHP, if I make a change to the database query, like adding a where >>> clause to filter only active records, the user sees the change on the next >>> browser refresh. >>> In django, it seems I have to restart the server and knock everyone off. >>> >>> I am a newbie, so is there a better way? >>> I just started a trial on webfraction >>> >> -- >> You received this message because you are subscribed to the Google Groups >> "Django users" group. >> To unsubscribe from this group and stop receiving emails from it, send an >> email to [email protected] <javascript:>. >> To post to this group, send email to [email protected]<javascript:> >> . >> Visit this group at http://groups.google.com/group/django-users?hl=en. >> For more options, visit https://groups.google.com/groups/opt_out. >> >> >> > > -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/django-users?hl=en. For more options, visit https://groups.google.com/groups/opt_out.

