Changes between Version 47 and Version 48 of DjangoSpecifications/Core/Threading


Ignore:
Timestamp:
Apr 26, 2008, 4:10:33 PM (16 years ago)
Author:
anonymous
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DjangoSpecifications/Core/Threading

    v47 v48  
    1414== Introduction ==
    1515
    16 The main pattern of global variable usage in Django is ''use `var` if initialized, otherwise initialize''. This is generally not thread-safe.
     16The main pattern of global variable usage in Django is ''use (read) `var` if initialized, otherwise initialize (write)''. This is generally not thread-safe.
    1717
    1818"Not thread-safe" has two broad subcategories in this case:
Back to Top