Re: Is it necessary to restart server after a change?

2013-02-19 Thread Gabriel - Iulian Dumbrava
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

Re: Is it necessary to restart server after a change?

2013-02-18 Thread Pankaj Singh
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 program used > to change a file

Re: Is it necessary to restart server after a change?

2013-02-18 Thread frocco
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

Re: Is it necessary to restart server after a change?

2013-02-18 Thread Pankaj Singh
Hey, Touching wsgi.py file is enough. Find more details at http://code.google.com/p/modwsgi/wiki/ReloadingSourceCode#Reloading_In_Daemon_Mode Sincerely, Pankaj Singh http://about.me/psjinx On Mon, Feb 18, 2013 at 7:56 PM, frocco wrote: > Hello, > > In PHP, if I make a

Is it necessary to restart server after a change?

2013-02-18 Thread frocco
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