On May 14, 2008, at 22:17 , Pigletto wrote:

>
>> Yeah, I've read that paper -- it looks like an investigation, but it
>> seems to have no conclusion which could help me to make a right  
>> design
>> decision.
> (...)
>> I don't use any Django templating (Mako instead) -- should I still
>> avoid creating multiple threads in my Django instance?
> I think that nobody can tell you that this will be thread safe or not.

No, the question is valid. It is a question of wether the code in  
Django is written with thread-safety in mind or not. If it's not, then  
it's not thread-safe (because it makes use of globals for config,  
caching, etc). Experimenting is not a good way to settle the issue,  
because it does not guarantee safety (for example, some problems may  
only come up when moving the code to production, or when scaling to  
more visitors).


--~--~---------~--~----~------------~-------~--~----~
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?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to