Django - Caching
Given this Django view with per-view caching:
What will happen if you refresh the page multiple times within 60 seconds?
@cache_page(60)
def home(request):
return HttpResponse(str(time.time()))What will happen if you refresh the page multiple times within 60 seconds?
