Skip to main content

Tools for automatically prefetching related objects in Django and Django-rest-framework

Project description

Django Auto-Prefetching

<GeeWee>

Never worry about n+1 performance problems again

This project aims to automatically perform the correct select_related and prefetch_related calls for your django-rest-framework code. It does this by inspecting your serializers, seeing what fields they use, and what models they refer to, and automatically calculating what needs to be prefetched.

Installation

Installation via pip:

pip install django-auto-prefetching

AutoPrefetchViewSetMixin

This is a ViewSet mixin you can use, which will automatically prefetch the needed objects from the database, based on the ViewSets queryset and serializer_class. Under most circumstances this will be all the database optimizations you'll ever need to do:

Usage

Simply add it after your ModelViewSet class.

from django_auto_prefetching import AutoPrefetchViewSetMixin
from rest_framework.viewsets import ModelViewSet

class BaseModelViewSet(AutoPrefetchViewSetMixin, ModelViewSet):
    queryset = YourModel.objects.all()
    serializer_class = YourModelSerializer

It supports all types of relational fields (many to many, one to many, one to one etc.) out of the box.

Manually calling prefetch

The AutoPrefetchViewSetMixin cannot see what objects are being accessed in e.g. a SerializerMethodField. If you use objects in there, you might need to do some additional prefetches. If you do this and override get_queryset, you will have to call prefetch manually as the mixin code is never reached.

import django_auto_prefetching
from rest_framework.viewsets import ModelViewSet

class BaseModelViewSet(django_auto_prefetching.AutoPrefetchViewSetMixin, ModelViewSet):
    serializer_class = YourModelSerializer
    
    def get_queryset(self):
        # Simply do the extra select_related / prefetch_related here
        # and leave the mixin to do the rest of the work
        queryset = YourModel.objects.all()
        queryset = queryset.select_related('my_extra_field')
        return django_auto_prefetching.prefetch(queryset, self.serializer_class)

You can override get_prefetchable_queryset instead of get_queryset if you don't want to manually call django_auto_prefetching.prefetch(). Example:

import django_auto_prefetching
from rest_framework.viewsets import ModelViewSet

class BaseModelViewSet(django_auto_prefetching.AutoPrefetchViewSetMixin, ModelViewSet):
    serializer_class = YourModelSerializer
    
    def get_prefetchable_queryset(self):
        return YourModel.objects.all()

Now get_queryset() will call our get_prefetchable_queryset() and will add automatic prefetches

Manually specifying which fields are needed

If you need to explicitly specify some extra fields to be included or excluded, you can also override the following methods on your ViewSet to return a list or a set of fields to prefetch/exclude.

import django_auto_prefetching
from rest_framework.viewsets import ModelViewSet

class BaseModelViewSet(django_auto_prefetching.AutoPrefetchViewSetMixin, ModelViewSet):
    serializer_class = YourModelSerializer

    def get_auto_prefetch_excluded_fields(self):
        return {"exclude_this_field", "and_this_field"}
    
    def get_auto_prefetch_extra_select_fields(self):
        return {"select_related_on_this_field"}

    def get_auto_prefetch_extra_prefetch_fields(self):
        return {"prefetch_related_on_this_field"}
}

Supported Versions

Python: 3.7, 3.8, 3.10
Django: 3.2, 4.0.4

Pull Requests to support other versions are welcome.

Maturity

The project is currently being used without issues in a medium-sized Django project (20.000 lines of code).

Contributing

Contributions are welcome! To get the tests running, do the following:

  • Clone the repository.
  • If you don't have it, install pipenv
  • Install the dependencies with pipenv sync --dev
  • Activate the virtualenv created by pipenv by writing pipenv shell
  • Run the tests with ./manage.py test

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_auto_prefetching-0.2.12.tar.gz (12.0 kB view details)

Uploaded Source

Built Distribution

django_auto_prefetching-0.2.12-py2.py3-none-any.whl (18.5 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file django_auto_prefetching-0.2.12.tar.gz.

File metadata

  • Download URL: django_auto_prefetching-0.2.12.tar.gz
  • Upload date:
  • Size: 12.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/5.1.0 pkginfo/1.9.2 requests/2.28.1 requests-toolbelt/0.10.1 tqdm/4.64.1 CPython/3.9.15

File hashes

Hashes for django_auto_prefetching-0.2.12.tar.gz
Algorithm Hash digest
SHA256 b095748adcf2f5c2358301044959e5cffd38dce28943b86f5a95778fd62de52c
MD5 1cc5b2245ad728c8e2655c32af66308e
BLAKE2b-256 790d56491db8df963fab7929a067e576353d7f6d118613ae4e1117b0154db092

See more details on using hashes here.

File details

Details for the file django_auto_prefetching-0.2.12-py2.py3-none-any.whl.

File metadata

  • Download URL: django_auto_prefetching-0.2.12-py2.py3-none-any.whl
  • Upload date:
  • Size: 18.5 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/5.1.0 pkginfo/1.9.2 requests/2.28.1 requests-toolbelt/0.10.1 tqdm/4.64.1 CPython/3.9.15

File hashes

Hashes for django_auto_prefetching-0.2.12-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 a61cfe95f0c8bd1212016d6242dd09278f47483d91fc65ab745921908f494e53
MD5 dc8e9d119fc3d4c179f7b0adfba428b7
BLAKE2b-256 ac80f9e987482b909161faaa9872ed72b768d1978f4a7b7e6fcf15730b57b70b

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