Malcolm Tredinnick wrote:
> > On a side not, why can't django detect that I have modified a file and
> > reload it, much better than running in a beta mode.
>
> Not entirely sure what you mean here. The development server can detect
> this. You can configure mod-python to do so, too, although it's not
> recommended.
>
> The downside of continually watching for changes is the need to monitor
> *every* *single* *file* for changes, which is very difficult to do in an
> efficient and portable fashion. In production situations (which are the
> majority of the use, unless you have no audience at all), files hardly
> ever change, so the default setting for things like mod-python is
> sensible: the developer or systems operators will know when files have
> changed (because they just rolled out new ones) and will know to reload
> the appropriate processes.

The default setting for mod_python is actually to reload modules. That
this is
the case though is irrelevant anyway as Django doesn't use mod_python's
module
importer anyway for any code managed under Django. Instead, Django uses
__import__ directly to import modules. To get this to work without
naming
collisions Django requires code to effectively reside in one big Python
package
structure. That it uses a package structure in this way makes it
basically
impossible to implement a module reloading scheme, as the very way that
imports within a package are done via the root of the package causes
loops
in the dependencies between modules within the package. Because it
isn't
just a tree like structure, the only option would be to reload every
module within
the package when any single module has changed and even then depending
on how data is cached and shared amongst modules in the package, it is
still
not practical and would cause lots of problems.

Even with mod_python there are lots of issues with its module importer.
These
have been documented at:


http://www.dscpl.com.au/wiki/ModPython/Articles/ModuleImportingIsBroken

A new module importer implementation in mod_python 3.3 will fix just
about
all of the issues, but in doing so it explicitly ignores Python
packages and
will not consider them as something that can be reloaded. Because of
how
Django relies on Python packages, it wouldn't even be able to use a
similar
scheme. To do so would require a fundamental part of how Django works
to
be changed and there is no way people would accept that. Thus, because
of
that earlier design decision, I would suggest you will never see
automatic
module reloading in Django.

Graham


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to