Skip to main content

Cursor based pagination for Django

Project description

Django cursor pagination Build Status

A cursor based pagination system for Django. Instead of refering to specific pages by number, we give every item in the queryset a cursor based on its ordering values. We then ask for subsequent records by asking for records after the cursor of the last item we currently have. Similarly we can ask for records before the cursor of the first item to navigate back through the list.

This approach has two major advantages over traditional pagination. Firstly, it ensures that when new data is written into the table, records cannot be moved onto the next page. Secondly, it is much faster to query against the database as we are not using very large offset values.

There are some significant drawbacks over "traditional" pagination. The data must be ordered by some database field(s) which are unique across all records. A typical use case would be ordering by a creation timestamp and an id. It is also more difficult to get the range of possible pages for the data.

The inspiration for this project is largely taken from this post by David Cramer, and the connection spec for Relay GraphQL. Much of the implementation is inspired by Django rest framework's Cursor pagination.. The main difference between the Disqus approach and the one used here is that we require the ordering to be totally determinate instead of using offsets.

Installation

pip install django-cursor-pagination

Usage

from cursor_pagination import CursorPaginator

from myapp.models import Post


def posts_api(request, after=None):
    qs = Post.objects.all()
    page_size = 10
    paginator = CursorPaginator(qs, ordering=('-created', '-id'))
    page = paginator.page(first=page_size, after=after)
    data = {
        'objects': [serialize_page(p) for p in page],
        'has_next_page': page.has_next,
        'last_cursor': paginator.cursor(page[-1])
    }
    return data


async def posts_api_async(request, after=None):
    qs = Post.objects.all()
    page_size = 10
    paginator = CursorPaginator(qs, ordering=('-created', '-id'))
    page = await paginator.apage(first=page_size, after=after)
    data = {
        'objects': [serialize_page(p) for p in page],
        'has_next_page': page.has_next,
        'last_cursor': paginator.cursor(page[-1])
    }
    return data

Reverse pagination can be achieved by using the last and before arguments to paginator.page.

Caveats

  • The ordering specified must uniquely identify the object.
  • If a cursor is given and it does not refer to a valid object, the values of has_previous (for after) or has_next (for before) will always return True.
  • NULL comes at the end in query results with ORDER BY both for ASC and DESC.

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_cursor_pagination-0.3.0.tar.gz (7.9 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file django_cursor_pagination-0.3.0.tar.gz.

File metadata

File hashes

Hashes for django_cursor_pagination-0.3.0.tar.gz
Algorithm Hash digest
SHA256 b09293ea9aa93cd0f3a9f4197e1f11f09283678e6c991cf4d4517a0fe90244c1
MD5 3d15e1d1bbd8e17373c1b4a49c44a845
BLAKE2b-256 099173adf878757d3f10c8882e532cbcf1feda4a788bfe8088a03475486ff97c

See more details on using hashes here.

File details

Details for the file django_cursor_pagination-0.3.0-py3-none-any.whl.

File metadata

File hashes

Hashes for django_cursor_pagination-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 ce88147adc1e41c58427217cf54d7cbb4d04d5cf0a3a2c794d81602ad347658e
MD5 80ea567301ca40434f2bde93fb9cc350
BLAKE2b-256 f7aeda7b25f23c97cdc05f97f83555653b5e4b69dee20ed0da5e9cce136d4e00

See more details on using hashes here.

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