Changes between Initial Version and Version 3 of Ticket #28817


Ignore:
Timestamp:
Nov 20, 2017, 9:17:01 AM (6 years ago)
Author:
Tim Graham
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #28817

    • Property Owner changed from nobody to Dražen Odobašić
    • Property Status newassigned
    • Property Has patch set
    • Property Triage Stage UnreviewedAccepted
    • Property Summary Use server side cursors for values and values_listUse server-side cursors for QuerySet.values() and values_list()
    • Property Version master1.11
  • Ticket #28817 – Description

    initial v3  
    1 Server side cursors are  only initialized for `ModelIterable` class. We should  do the same for other `BaseIterable` classes (`ValuesIterable`, `ValuesListIterable` and `FlatValuesListIterable`).
     1Server side cursors are  only initialized for `ModelIterable` class. We should  do the same for other `BaseIterable` classes (`ValuesIterable`, `ValuesListIterable` and `FlatValuesListIterable`). ([https://groups.google.com/d/topic/django-developers/U7PcZxXnb6Y/discussion django-developers discussion]
    22
    33The idea is that you could then use `QuerySet.values_list('id').iterator()` and actually utilize server side cursors.
Back to Top