I am new to web application development.
My question is ... I tried some kind of manual development on Zend + Apache (php), Flask (python), Express under node.js.
I found that when I start developing the Zend framework + Apache, there is no need to restart apache every time I change the code in PHP under the controller, model or views. It is very convenient and fast!
However, if I am working on Flask or Express, I have to restart the entire application every time I change the code on the controller or part of the model. There is no need to restart the server when changing the code in the "View Details" section. However, this is annoying enough !!!
Right now, I am working on a project on Flask, how can I avoid restarting the server every time ??? Can the problem be solved if I put the entire web application on top of Nginx ??
thanks a lot
source share