Skip to main content

Django global response timeout middleware

Project description

https://pypip.in/v/django-response-timeout/badge.png https://travis-ci.org/saulshanabrook/django-response-timeout.png

django-response-timeout allows you to set the cache time globally for all responses. It provides a way to override the client side cache time for the Django per site caching middleware.

Installation

Installation is as easy as:

pip install django-response-timeout

Setup

Add response_timeout.middleware.SetCacheTimeoutMiddleware and place it after dumper.middleware.UpdateCacheMiddleware so that it will set the header time first on cached responses.

MIDDLEWARE_CLASSES = (
    'django.middleware.cache.UpdateCacheMiddleware',
    'response_timeout.middleware.SetCacheTimeoutMiddleware',
    'django.middleware.common.CommonMiddleware',
    'django.middleware.cache.FetchFromCacheMiddleware',
)

Then set RESPONSE_CACHE_SECONDS to the number of seconds each page should be cached on the front end.

The Django documention does not cohesively describe how your middleware should be ordered, however this stackoverflow discussion does a fine job.

Contributing

If you find issues or would like to see a feature suppored, head over to the issues section and report it. Don’t be agraid, go ahead, do it!

To contribute code in any form, fork the repository and clone it locally. Create a new branch for your feature:

git commit -b feature/whatever-you-like

Then make sure all the tests past (and write new ones for any new features):

pip install -e .
pip install -r requirements-dev.txt
django-admin.py test --settings=test.settings

Check if the README.rst looks right:

restview --long-description

Then push the finished feature to github and open a pull request form the branch.

New Release

To create a new release:

  1. Add changes to CHANGES.txt

  2. Change version in setup.py

  3. python setup.py register

  4. python setup.py sdist upload

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-response-timeout-0.1.0.tar.gz (4.4 kB view details)

Uploaded Source

File details

Details for the file django-response-timeout-0.1.0.tar.gz.

File metadata

File hashes

Hashes for django-response-timeout-0.1.0.tar.gz
Algorithm Hash digest
SHA256 6632bb82e101404c2ff4ab27c6d353d01f9dda6e2e5e0395d61289b6fab33761
MD5 8113ca70244e341e73adc47629f1b5ed
BLAKE2b-256 b81edaea4d67aa52b5e0a6a8ba359f70127b3a9b779ace93418b2ba563568a61

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page