summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJacob Walls <jacobtylerwalls@gmail.com>2026-05-08 13:50:14 -0400
committerJacob Walls <jacobtylerwalls@gmail.com>2026-05-11 12:32:30 -0400
commit4de8394f2318196ad7170ae45aa142b49bb24ce4 (patch)
tree35cca03c4f2caedd71a3cb4cbf54960fba928b81 /docs
parent122f0b62a1effa558aad67a62e5b0d84a49cdc23 (diff)
Refs #36593 -- Replaced reference to select_related() in design philosophies.
Diffstat (limited to 'docs')
-rw-r--r--docs/misc/design-philosophies.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/misc/design-philosophies.txt b/docs/misc/design-philosophies.txt
index 0b989d760e..f999901337 100644
--- a/docs/misc/design-philosophies.txt
+++ b/docs/misc/design-philosophies.txt
@@ -126,9 +126,9 @@ optimize statements internally.
This is why developers need to call ``save()`` explicitly, rather than the
framework saving things behind the scenes silently.
-This is also why the ``select_related()`` ``QuerySet`` method exists. It's an
-optional performance booster for the common case of selecting "every related
-object."
+This is also why the ``FETCH_PEERS`` :doc:`fetch mode </topics/db/fetch-modes>`
+exists. It's an optional performance booster for the common case of selecting
+related objects for every peer in a ``QuerySet``.
Terse, powerful syntax
----------------------