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.
Free software: Mozilla Public License Version 2.0
Documentation: https://drf-cached-instances.readthedocs.org
Generated from: https://github.com/jwhitlock/cookiecutter-django-jw.git
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 Novemeber 2014. The code may change in response to the needs of the web-platform-compat project. It is expected to stabilize by early 2015. And, like all open source projects, more documentation is needed.
History
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
Built Distribution
File details
Details for the file drf-cached-instances-0.1.0.tar.gz
.
File metadata
- Download URL: drf-cached-instances-0.1.0.tar.gz
- Upload date:
- Size: 38.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dc7da5d42a37e44786cab9f58cbdf3892eb686e473473699104c75a4a8d63d56 |
|
MD5 | 1886886413d1546c6b49784eb19058a6 |
|
BLAKE2b-256 | 072da6cb850b11b5723206d8b0306cb2358fa1a083efa96d0965de5f93dfbb8d |
File details
Details for the file drf_cached_instances-0.1.0-py2.py3-none-any.whl
.
File metadata
- Download URL: drf_cached_instances-0.1.0-py2.py3-none-any.whl
- Upload date:
- Size: 11.3 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3e8864c008728b2b39034b55f06d4cc683491d7da2662c8b0297c3d26b27d705 |
|
MD5 | 5a55b4bbbc77faf75b5699bfe49edff4 |
|
BLAKE2b-256 | e2da7d2a195a2eb828d332ad68fba02eba63723731a5094323129bd63994283b |