django-requests-cache

Django Cache.


Keywords
django, cache, redis
License
MIT
Install
pip install django-requests-cache==0.1.2

Documentation

Django request cache

Middlewares:

  • CacheMiddleware

Use:

# settings.py
INSTALLED_APPS = [
    # .
    # .
    # .
    "cache.apps.CacheConfig"
]


MIDDLEWARE = [
    'cache.middleware.CacheMiddleware',
    # .
    # .
    # .
]

REDIS_HOST = 'localhost'
REDIS_PORT = 6379
REDIS_DB = 0
REDIS_EXPIRE = 600