﻿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	mengxun	"**settings.py**
{{{
...
MIDDLEWARE = [
    ""django.middleware.cache.UpdateCacheMiddleware"", 
    ""django.middleware.common.CommonMiddleware"",
    ""django.middleware.cache.FetchFromCacheMiddleware"", 
]
...
}}}

**views.py**
{{{
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.
"	Cleanup/optimization	closed	HTTP handling	5.2	Normal	fixed	cache		Ready for checkin	1	0	0	0	1	0
