Changes between Version 1 and Version 2 of Ticket #29078


Ignore:
Timestamp:
Jan 28, 2018, 2:29:10 PM (7 years ago)
Author:
xx396
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #29078 – Description

    v1 v2  
    77serializers.serialize('json', groups)
    88
    9 This will N+1 query the permissions as handle_m2m_field uses iterator() which bypasses any cache. Suggest serializers/python.py line 77 replaces iterator() with all()
     9This will N+1 query the permissions as handle_m2m_field uses iterator() which bypasses any cache. Suggest serializers/python.py line 78 replaces iterator() with all()
Back to Top