I'm cacheing a view as below:
@cache_page(60 * 15)
def my_view(request):
# Get results for request.user
return HttpResponse(json.dumps(results), content_type="application/json", status=200)
How can I clear this cache when the user logs out?