Skip to content

Commit

Permalink
minor modification: max-age=3600 means 60 minutes
Browse files Browse the repository at this point in the history
  • Loading branch information
mazharz authored and kamranahmedse committed Nov 29, 2019
1 parent c2f077a commit 8a5c40e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion storage/guides/http-caching.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 8a5c40e

Please sign in to comment.