On Mon, Sep 28, 2009 at 4:34 AM, Torsten Bronger
<bron...@physik.rwth-aachen.de> wrote:
> Can it be safely used with Apache's Worker MPM?

The answer is, basically, "it depends on what *you*, the programmer, do".

The current stable releases of Django -- 1.0.3 and 1.1 -- don't by
themselves do anything which is known to cause threading issues. But,
of course, you as a programmer can use Django or other libraries in
ways which are not thread-safe. In general, sharing mutable objects --
QuerySet instances, compiled templates, etc. (all of which have and
need to maintain internal state) -- across threads will get you in
trouble, but that's hopefully fairly obvious.


-- 
"Bureaucrat Conrad, you are technically correct -- the best kind of correct."

--~--~---------~--~----~------------~-------~--~----~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to