From e29fe52cb1659a8c1d1fb7b1c5a7ec866f58c7ba Mon Sep 17 00:00:00 2001 From: Mazhar Zandsalimi Date: Fri, 29 Nov 2019 10:09:26 +0330 Subject: [PATCH] minor modification: max-age=3600 means 60 minutes --- storage/guides/http-caching.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage/guides/http-caching.md b/storage/guides/http-caching.md index e90d1ef69..7132915f8 100644 --- a/storage/guides/http-caching.md +++ b/storage/guides/http-caching.md @@ -128,7 +128,7 @@ Cache-Control: max-age=3600, no-cache, public ```html Cache-Control: max-age=3600, public ``` -it would mean that the content is publicly cacheable and will be considered stale after 60 seconds +it would mean that the content is publicly cacheable and will be considered stale after 60 minutes ##### s-maxage: seconds **`s-maxage`** here `s-` prefix stands for shared. This directive specifically targets the shared caches. Like `max-age` it also gets the number of seconds for which something is to be cached. If present, it will override `max-age` and `expires` headers for shared caching.