Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

django-fast-paginator

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

django-fast-paginator

A Django app to paginate querysets faster.

  • 1.0.4
  • PyPI
  • Socket score

Maintainers
1

Issues Forks Stars License Twitter

Fast Paginator for Django

Simple speedy pagination over your large database tables.

Features

Simple Integration

FastPaginator API is compatible with Django's built-in pagination library. Only change your import statements then you're ready.

Better SQL Queries

Django's built-in pagination system builds SQL queries that have offset and limit clauses. FastPagination does not use them.

Built-in Cache System

FastPaginator has a built-in cache system. It does not cache QuerySets but caches primary keys of object lists. This provides speedup for pagination progress.

Quick Start

  1. Add "fast_pagination" to your INSTALLED_APPS setting like this:
    INSTALLED_APPS = [
        ... 
        'fast_pagination'
    ]
  1. In Django settings, you can set FAST_PAGINATION_TIMEOUT variable to invalidate cache. Default value is 1 hour.
  2. In Django settings, you can set FAST_PAGINATION_PREFIX variable to use in cache keys. Default values is 'fastpagination'.
  3. 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.

To Run Tests

  1. Create a dummy project.
  2. Run following command.
./manage.py test fast_pagination.tests

Benchmark

This benchmark is executed on Postgres9.6 with a table that has 1000000 rows, and fetched only one field. Results can be seen below.

PaginatorMinMaxMeanStdDevMedian
Django93.5535 (1.53)95.7217 (1.54)94.7340 (1.53)0.9755 (2.32)94.9046 (1.54)
FastPaginator61.1488 (1.0)62.3316 (1.0)61.7489 (1.0)0.4205 (1.0)61.7649 (1.0)

You can also run benchmark tests following instructions:

  1. Run migrations if app needs using
./manage.py migrate
  1. Call generate_users command from command line using
./manage.py generate_users 1000000
  1. Run tests using
pytest fast_pagination/tests.py

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc