#33970: select_for_update code snippet example selects for update outside of 
it's
transaction
-----------------------------------------+------------------------
               Reporter:  thomasf        |          Owner:  nobody
                   Type:  Bug            |         Status:  new
              Component:  Documentation  |        Version:  4.0
               Severity:  Normal         |       Keywords:
           Triage Stage:  Unreviewed     |      Has patch:  0
    Needs documentation:  0              |    Needs tests:  0
Patch needs improvement:  0              |  Easy pickings:  0
                  UI/UX:  0              |
-----------------------------------------+------------------------
 The docs suggest this for select_for_update:


 {{{
 entries = Entry.objects.select_for_update().filter(author=request.user)
 with transaction.atomic():
     for entry in entries:
         ...
 }}}


 If a user does this under the default auto commit transaction
 circumstances the select_for_update should happen inside the transaction,
 not before it so it is probably best if the example follows real world
 usage.

-- 
Ticket URL: <https://code.djangoproject.com/ticket/33970>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/01070182f298e680-f4933739-8e3e-4a72-b6f6-964a66bb7aa1-000000%40eu-central-1.amazonses.com.

Reply via email to