Skip to main content

Cache worker for gunicorn

Project description

https://img.shields.io/travis/youngking/gunicorn_cache.svg https://img.shields.io/pypi/v/gunicorn_cache.svg

Cache worker for gunicorn

  • Free software: ISC license

Usage

Add these settings in Gunicorn configuration file:

cache_route = [
    {'url': '^/custom_url1', 'methods':['GET', 'POST'], 'expire': 500},
    {'url': '^/custom_url2', 'methods': ['POST'], 'expire': 500, 'prolong': False}
]

cache_store = {'redis_url':'redis://127.0.0.1:6379/0'}

worker_class = 'gunicorn_cache.RedisWorker'

Then run the gunicorn.

Advance Usage

Refresh cache

curl -H "GUNICORN_CACHE_REFRESH:true" -X <method> <url>

Features

  • TODO

History

0.1.5 (2016-01-07)

  • Improve refresh cache

0.1.4 (2016-01-07)

  • Add refresh cache method

0.1.3 (2015-12-23)

  • Fix a response duplicated set bug

0.1.1 (2015-12-16)

  • Change configuration

  • add prolong feature

0.1.0 (2015-12-15)

  • First release on PyPI.

Supported by

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