On 6/12/06, Collin L <[EMAIL PROTECTED]> wrote: > > I guess what I'm saying is, Does the cherrypy server really need to > restart after every edit to controller.py? If so, why? If not, why > does it autoreload? >
Yes, CherryPy needs to reload after every edit to controller.py. The CherryPy runs as a continuous process, so when you make changes to controller.py it can't reload them on the fly without reloading everything. A PHP script is read every time it is accessed because it's not a continuously running process, hence the ability to refresh quicker. Lee -- Lee McFadden blog: http://www.splee.co.uk work: http://fireflisystems.com --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/turbogears -~----------~----~----~----~------~----~------~--~---

