Changes between Version 1 and Version 3 of Ticket #26451


Ignore:
Timestamp:
Apr 3, 2016, 7:15:51 AM (8 years ago)
Author:
Denis Cornehl
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #26451

    • Property Triage Stage UnreviewedAccepted
  • Ticket #26451 – Description

    v1 v3  
    33depending on the use-case there are two ways to improve the situation
    44* just work without count, if you never show the page-count. Then the paginator can just return empty results if the end is near.
    5 * use rough estimations for the page-count, perhaps with some security margin. For example PostgreSQL supports this by using {{EXPLAIN}}, based on the table statistics.
     5* use rough estimations for the page-count, perhaps with some security margin. For example PostgreSQL supports this by using {{{EXPLAIN}}}, based on the table statistics.
    66
    77I want to
    88* extend the paginator to support both (infinite and estimate)
    9 * provide an option for {{ModelAdmin}} that let's you use the estimation-paginator.
     9* provide an option for {{{ModelAdmin}}} that let's you use the estimation-paginator.
    1010* or perhaps even support the infinite-paginator, this would also include interface changes to the pagination.
Back to Top