Browse Source

Fixed #33046 -- Added note about using length of cached result by QuerySet.count().

Can Sarıgöl 3 years ago
parent
commit
7ea86076fc
1 changed files with 3 additions and 0 deletions
  1. 3 0
      docs/ref/models/querysets.txt

+ 3 - 0
docs/ref/models/querysets.txt

@@ -2291,6 +2291,9 @@ retrieving model instances from it (for example, by iterating over it), it's
 probably more efficient to use ``len(queryset)`` which won't cause an extra
 database query like ``count()`` would.
 
+If the queryset has already been fully retrieved, ``count()`` will use that
+length rather than perform an extra database query.
+
 ``in_bulk()``
 ~~~~~~~~~~~~~