django-infinite-scroll-pagination icon indicating copy to clipboard operation
django-infinite-scroll-pagination copied to clipboard

:cyclone: Pagination based on the seek method / keyset paging / offset-less pagination

Results 4 django-infinite-scroll-pagination issues
Sort by recently updated
recently updated
newest added

Fixes #9 Related #8 Implements the "row values" variation. Benchmark without index, 1M rows; 4 sort fields; page 80K; article 800K: ``` Offset/Limit 1.692431215000397 Seek Method 0.3435570509991521 ``` Benchmark with...

This seems to be possible using a [custom where](https://docs.djangoproject.com/en/2.2/ref/models/querysets/#extra). It should be implemented for postgresql, and maybe some other DB engine.

At the moment `page_key` / `to_page_key` can only (un)serialize datetime+pk. It should support multiple fields. We should likely pass the raw values to the Paginator as a new parameter (`raw`),...

Django 5 has the following breaking change that breaks the module: ``` The django.utils.timezone.utc alias to datetime.timezone.utc is removed. ``` This PR fixes this issue.