mirror of
https://github.com/django/django.git
synced 2025-08-04 19:08:28 +00:00
Fixed #22553 -- Added refreshing queryset info to docs.
This commit is contained in:
parent
5cdb8f8c1e
commit
6d5daa30cf
1 changed files with 5 additions and 0 deletions
|
@ -717,6 +717,11 @@ can be useful in situations where you might want to pass in either a model
|
|||
manager or a ``QuerySet`` and do further filtering on the result. After calling
|
||||
``all()`` on either object, you'll definitely have a ``QuerySet`` to work with.
|
||||
|
||||
When a ``QuerySet`` is :ref:`evaluated <when-querysets-are-evaluated>`, it
|
||||
typically caches its results. If the data in the database might have changed
|
||||
since a ``QuerySet`` was evaluated, you can get updated results for the same
|
||||
query by calling ``all()`` on a previously evaluated ``QuerySet``.
|
||||
|
||||
select_related
|
||||
~~~~~~~~~~~~~~
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue