﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
36560	When the Cache-Control header is set to no-store, the response is cached.	mengxun		"{{{
from django.http import HttpResponse
import datetime

def cache_demo(request):
    resp = HttpResponse(f""Current content at {datetime.datetime.now()}"")
    resp[""Cache-Control""] = ""no-store""
    return resp

}}}
Based on the example above, when the Cache-Control header is set to no-store, the response content is still cached.
"	Bug	new	Core (Cache system)	5.2	Normal		cache		Unreviewed	0	0	0	0	1	0
