diff options
| -rw-r--r-- | AUTHORS | 1 | ||||
| -rw-r--r-- | docs/topics/pagination.txt | 5 |
2 files changed, 6 insertions, 0 deletions
@@ -174,6 +174,7 @@ answer newbie questions, and generally made Django that much better: Daniele Procida <daniele@vurt.org> Daniel Greenfeld dAniel hAhler + Daniel Jilg <daniel@breakthesystem.org> Daniel Lindsley <daniel@toastdriven.com> Daniel Poelzleithner <http://poelzi.org/> Daniel Pyrathon <pirosb3@gmail.com> 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). |
