[1.9.x] Fixed #14131 -- Added note to docs about Pagination and large Querysets

Backport of 55c843f2ef702b4ebcd024920d4193bdf4c3fe07 from master.
This commit is contained in:
Daniel Jilg 2016-04-02 15:44:22 +02:00 committed by Erik Romijn
parent 5c1944f918
commit be1ac00379
2 changed files with 6 additions and 0 deletions

View File

@ -172,6 +172,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>

View File

@ -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).