27

In the HTTP response header for my website it is returning a header that contains the following value.

"Cache-Control: max-age=3600"

Is 3600 in seconds or minutes?

Brock Adams
  • 90,639
  • 22
  • 233
  • 295
Paul Mendoza
  • 5,709
  • 12
  • 53
  • 82

2 Answers2

30

delta seconds. http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.9.3

max-age

Indicates that the client is willing to accept a response whose age is no greater than the specified time in seconds...

gnat
  • 6,213
  • 108
  • 53
  • 73
jcomeau_ictx
  • 37,688
  • 6
  • 92
  • 107
11

It's in seconds, so the value you quoted corresponds to 1 hour.

Andrew Cooper
  • 32,176
  • 5
  • 81
  • 116