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


Ignore:
Timestamp:
Apr 28, 2008, 3:59:25 AM (17 years ago)
Author:
anonymous
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DjangoSpecifications/Core/Threading

    v49 v50  
    1414== Introduction ==
    1515
    16 The 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.
     16The main pattern of global variable usage in Django is ''use `var` if initialized (read), 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