>
>> 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).