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


Ignore:
Timestamp:
Apr 26, 2008, 4:14:58 PM (17 years ago)
Author:
anonymous
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DjangoSpecifications/Core/Threading

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