I'm using Django's per-view @cache_page decorator and have set a different key_prefix for each view.
I've previously deleted the cache with:
from django.core.cache import cache
cache.clear()
But what if I just want to delete the keys containing a specific key_prefix? I can obviously do it by just connecting to the database and delete with raw sql but I wonder if it can be done with 'pure' Django?
I'm using a database cache, not a memory cache.
I'm using Django 1.11 and Python 3.6
