summaryrefslogtreecommitdiff
path: root/docs/ref/models
diff options
context:
space:
mode:
authorPreston Holmes <preston@ptone.com>2012-11-02 15:49:29 +0000
committerPreston Holmes <preston@ptone.com>2012-11-02 22:03:55 -0700
commit0131da06220c1bc7e25df9ea50219e480e5004b3 (patch)
treeac5f3244fb18f30546809e69bfb70eb56ed47d90 /docs/ref/models
parent75fb8f433fc0bc64fed0b8dcc540f7a3544f9aa4 (diff)
[1.5.x] Deprecated depth kwarg on select_related.
This is the start of a deprecation path for the depth kwarg on select_related. Removing this will allow us to update select_related so it chains properly and have an API similar to prefetch_related. Thanks to Marc Tamlyn for spearheading and initial patch. refs #16855
Diffstat (limited to 'docs/ref/models')
-rw-r--r--docs/ref/models/querysets.txt30
1 files changed, 16 insertions, 14 deletions
diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt
index 7138cd0e74..295c996af4 100644
--- a/docs/ref/models/querysets.txt
+++ b/docs/ref/models/querysets.txt
@@ -676,21 +676,12 @@ Note that, by default, ``select_related()`` does not follow foreign keys that
have ``null=True``.
Usually, using ``select_related()`` can vastly improve performance because your
-app can avoid many database calls. However, in situations with deeply nested
-sets of relationships ``select_related()`` can sometimes end up following "too
-many" relations, and can generate queries so large that they end up being slow.
+app can avoid many database calls. However, there are times you are only
+interested in specific related models, or have deeply nested sets of
+relationships, and in these cases ``select_related()`` can can be optimized by
+explicitly passing the related field names you are interested in. Only
+the specified relations will be followed.
-In these situations, you can use the ``depth`` argument to ``select_related()``
-to control how many "levels" of relations ``select_related()`` will actually
-follow::
-
- b = Book.objects.select_related(depth=1).get(id=4)
- p = b.author # Doesn't hit the database.
- c = p.hometown # Requires a database call.
-
-Sometimes you only want to access specific models that are related to your root
-model, not all of the related models. In these cases, you can pass the related
-field names to ``select_related()`` and it will only follow those relations.
You can even do this for models that are more than one relation away by
separating the field names with double underscores, just as for filters. For
example, if you have this model::
@@ -730,6 +721,17 @@ You can also refer to the reverse direction of a
is defined. Instead of specifying the field name, use the :attr:`related_name
<django.db.models.ForeignKey.related_name>` for the field on the related object.
+.. deprecated:: 1.5
+ The ``depth`` parameter to ``select_related()`` has been deprecated. You
+ should replace it with the use of the ``(*fields)`` listing specific
+ related fields instead as documented above.
+
+A depth limit of relationships to follow can also be specified::
+
+ b = Book.objects.select_related(depth=1).get(id=4)
+ p = b.author # Doesn't hit the database.
+ c = p.hometown # Requires a database call.
+
A :class:`~django.db.models.OneToOneField` is not traversed in the reverse
direction if you are performing a depth-based ``select_related()`` call.