core-cache-manager-app

Cache management functionalities


License
Other
Install
pip install core-cache-manager-app==1.4.0

Documentation

Core Cache Manager App

Cache management feature for the curator core project.

Configuration

1. Add "core_cache_manager_app" to your INSTALLED_APPS setting like this

INSTALLED_APPS = [
    ...
    "core_cache_manager_app",
]

2. Include the core_cache_manager_app URLconf in your project urls.py like this

url(r'^', include("core_cache_manager_app.urls")),