Skip to main content

Cached instances for Django REST Framework

Project description

Speed up Django REST Framework (DRF) reads by storing instance data in cache.

This code was split from web-platform-compat. You may be interested in viewing the web-platform-compat source code for a full example implementation.

How it works

In a normal DRF view, a Django queryset is used to load an object or list of objects. A serializer is used to convert the objects into the “native” representation, and then a renderer works on this native representation. If the serializer includes data from related models, then multiple database queries may be required to generate a native representation. Some database efficiency can be gained by using select_related, but a minimum of one query is needed, which is unfortunate for an API with heavy read usage.

This project replaces the Django queryset with a cache-aware proxy class, making it possible to serve a read request with zero database requests (to retrieve an instance) or one request (to get the primary keys for a list view). It is suitable for APIs with heavy read operations and lots of linking between related instances.

When using the cache, Django objects are serialized to JSON. Only the attributes needed for the DRF native representation are stored in the cache. This include the JSON representation of fields such as foreign keys, reverse relations, and dates and times. These serialized objects are stored by primary key in the cache. When an instance is found in the cache, no database reads are needed to render the DRF representation. If the instance is not in the cache, it is serialized and stored, so that future reads will be faster.

The API implementor writes methods to handle JSON serialization, loading from the database, and identifying invalid cache entries on changes. There are a few integration points, including a mixin for views to load data from the cache. With only a few changes to existing code, your read views could be a lot faster.

Project status

This code is used for the web-platform-compat project, which is in development as of April 2015. The code may change in response to the needs of the web-platform-compat project. It is expected to stabilize by mid 2015. And, like all open source projects, more documentation is needed.

History

0.3.0 (2015-04-09)

  • Tested with Django 1.8

  • Tested with Django REST Framework 2.4, 3.0, and 3.1

  • CachedModel now supports .pk attribute as an alias, usually to the .id field. DRF 3 uses .pk to determine if a model is saved to database, and returns empty relation data for unsaved fields.

  • cache.delete_all_versions() will delete all cached instances of a model and PK. This is useful when changes are made outside of normal requests, such as during a data migration.

0.2.0 (2014-12-11)

  • Add update_only option to cache.update_instance, to support eventual consistency for cold caches.

0.1.0 (2014-11-06)

  • First release on PyPI.

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

drf-cached-instances-0.3.0.tar.gz (39.5 kB view details)

Uploaded Source

Built Distribution

drf_cached_instances-0.3.0-py2.py3-none-any.whl (11.4 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file drf-cached-instances-0.3.0.tar.gz.

File metadata

File hashes

Hashes for drf-cached-instances-0.3.0.tar.gz
Algorithm Hash digest
SHA256 04a853365c6a2a3c0167bf11bfc234940dc1daa11cbe6ee421e7f70db3ff2c00
MD5 b044c63ea826eda5ce902dda09a01d96
BLAKE2b-256 36c7181daf14780ef9a206e7747710260b84ff59fba47ccac37f73ae681a02f4

See more details on using hashes here.

File details

Details for the file drf_cached_instances-0.3.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for drf_cached_instances-0.3.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 37d266012d6ae5fba30837f6c3c94d128d458451834f6c93edec67eb49208987
MD5 93ee7fe749c0356bda7f4c68a4a455ae
BLAKE2b-256 5ba8768525101f1d3d136bee93d26f774533463725e34013c8075d73481e55ce

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