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