lamby / django-cache-toolbox

Non-magical object caching for Django

Home Page:https://chris-lamb.co.uk/lamby/django-cache-toolbox

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

django-cache-toolbox

Non-magical object caching for Django.

Another caching framework for Django that does not do any magic behind your back, saving brain cycles when debugging as well as sticking to Django principles.

Installation

From PyPI:

pip install django-cache-toolbox

Basic Usage

from cache_toolbox import cache_model, cache_relation
from django.db import models

class Foo(models.Model):
    ...

class Bazz(models.Model):
    foo = models.OneToOneField(Foo, related_name='bazz', primary_key=True)
    ...

# Prepare caching of a model
cache_model(Foo)

# Prepare caching of a relation
cache_relation(Foo.bazz)

# Fetch the cached version of a model
foo = Foo.get_cached(pk=42)

# Load a cached relation
print(foo.bazz_cache)

See the module docstrings for further details.

About

Non-magical object caching for Django

https://chris-lamb.co.uk/lamby/django-cache-toolbox

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Python 100.0%