Skip to main content

A Django app to paginate querysets faster.

Project description

Fast Paginator for Django

Fast Paginator is a simple Django app to paginate Django Querysets. Core Django Paginator uses LIMIT and OFFSET when creating queries to execute. This application is not using LIMIT and OFFSET, so it gets faster results. If you have millions of entries in a table, then Django will make you wait a lot longer than this app!

Quick Start

  1. Add "fast_pagination" to your INSTALLED_APPS setting like this:
    INSTALLED_APPS = [
        ...
        'fast_pagination'
    ]
  1. Import FastPaginator like this:
    from fast_pagination.helpers import FastPaginator
  1. Then, you are ready. All you have to do is give your queryset and number of entries when creating FastPaginator object.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-fast-paginator-1.0.0.tar.gz (2.5 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page