Changes between Initial Version and Version 1 of Ticket #29985, comment 4


Ignore:
Timestamp:
Nov 27, 2018, 5:13:34 AM (5 years ago)
Author:
Simon Charette

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #29985, comment 4

    initial v1  
    33In most cases using `prefetch_related()` even for the ''details'' queryset is not going to be hurtful.
    44
    5 Your `CollectionAdmin` is a good example as it requires fetching `items` anyway for display the inlines. Doing it through `prefetch_related` or not will still result in a query.
     5Your `CollectionAdmin` is a good example as it requires fetching `items` anyway to display the inlines. Doing it through `prefetch_related` or not will still result in a query.
Back to Top