vote up 0 vote down star

Almost every Python web framework has a simple server that runs a wsgi application and automatically reloads the imported modules every time the source gets changed. I know I can look at the code and see how it's done, but that may take some time and I'm asking just out of curiosity. Does anyone have any idea how this is implemented?

flag

47% accept rate

2 Answers

vote up 2 vote down check

As the author of one of the reloader mechanisms (the one in werkzeug) I can tell you that it doesn't work. What all the reloaders do is forking one time and restarting the child process if a monitor thread notices that one module changed on the file system.

Inline reload()ing doesn't work because references to the reloaded module are not updated.

link|flag
vote up 1 vote down

reload() does not work. "Reloading" is usually implemented by forking.

Implementing "real" reload() is extremely difficult and even the most serious attempt, twisted.python.rebuild isn't perfect.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.