diff options
| author | Daniel Jilg <winsmith@winsmith.de> | 2016-04-02 15:44:22 +0200 |
|---|---|---|
| committer | Erik Romijn <eromijn@solidlinks.nl> | 2016-04-02 16:03:34 +0200 |
| commit | 55c843f2ef702b4ebcd024920d4193bdf4c3fe07 (patch) | |
| tree | 16c02acdbcaae555909c5e3054bb316c21c6a626 /docs | |
| parent | d81d02d449edd046a94de5f171f4ae87fa331c7d (diff) | |
Fixed #14131 -- Added note to docs about Pagination and large Querysets
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/topics/pagination.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/topics/pagination.txt b/docs/topics/pagination.txt index a45b8fabd6..9baa1879e1 100644 --- a/docs/topics/pagination.txt +++ b/docs/topics/pagination.txt @@ -146,6 +146,11 @@ Required arguments clause or with a default :attr:`~django.db.models.Options.ordering` on the model. + .. note:: + + If you are using a ``QuerySet`` with a very large number of items, + requesting high page numbers might be slow on some database backends. + ``per_page`` The maximum number of items to include on a page, not including orphans (see the ``orphans`` optional argument below). |
