# django-verbosecache **Repository Path**: mirrors_pelletier/django-verbosecache ## Basic Information - **Project Name**: django-verbosecache - **Description**: A dummy cache backend for Django, but verbose - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-25 - **Last Updated**: 2026-05-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # django-verbosecache `django-verbosecache` is a dummy cache backend for Django, but verbose. It will just print which methods of the backend are called, and the provided arguments. ## Set up Copy the `verbose_cache.py` file in the root of your Django project (for example), and ajust your settings: CACHES = { 'default': { 'BACKEND': 'verbose_cache.VerboseCache', } } ## Example output [CACHE] get called with: (, 'views.decorators.cache.cache_header..6666cd76f96956469e7be39d750cc7d9.en-us.notmobile', None) {} Output: None