On Jun 15, 11:11 am, Miles <boo...@gmail.com> wrote: > Connections aren't thread safe - you have to ensure every thread gets > its own connection. You can create a new connection every request or > use a thread-local to cache connections.
The latter is what Django does, although it's very easy to miss when perusing the source code. The backend DatabaseWrapper class (where the connection is stored) inherits from BaseDatabaseWrapper, which inherits from threading.local. Ian --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---