Changes between Version 77 and Version 78 of DjangoSpecifications/Core/Threading


Ignore:
Timestamp:
Sep 21, 2009, 9:42:44 AM (15 years ago)
Author:
mrts
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DjangoSpecifications/Core/Threading

    v77 v78  
    1111However, there are certain issues you have to keep in mind:
    1212 1. `QuerySet`s are known not to be thread-safe, see #11906. Usually that does not pose problems as they are (or should be) not shared between threads in Django. The exception to that rule is the use of exotic global/class-level/shared instance variable querysets in your own code (e.g. when using the ORM outside of the Django dispatch system), where you are assumed to know what you are doing and protect them appropriately anyway.
    13  1. There is an edge case that can result in a deadlock during middleware loading, see #11193. This will trigger only when the setup is invalid and won't generally harm you.
     13 1. There is an edge case that can result in a deadlock during middleware loading, see #11193. This will trigger only when the setup is invalid and won't harm you otherwise.
    1414
    1515'''Note that 1.0.2 has two know treading bugs, #10470 and #10472.'''
Back to Top