Changes between Initial Version and Version 1 of Ticket #29380


Ignore:
Timestamp:
May 4, 2018, 7:24:07 AM (6 years ago)
Author:
Tim Graham
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #29380

    • Property Easy pickings unset
    • Property Triage Stage UnreviewedAccepted
    • Property Summary Support skip_locked argument to QuerySet.select_for_update() on MYSQL 8+Add support for QuerySet.select_for_update()'s nowait and skip_locked options on MySQL 8+
    • Property Type New featureCleanup/optimization
  • Ticket #29380 – Description

    initial v1  
    1 MYSQL 8+ already supports skip locked and no wait options while Django DB backend doesn't support it for MYSQL.
     1MySQL 8+ supports `skip_locked` and `nowait` options but the MySQL database backend doesn't support them.
    22
    33Reference: https://mysqlserverteam.com/mysql-8-0-1-using-skip-locked-and-nowait-to-handle-hot-rows/
Back to Top