When Last-Modified is unknown, you can still use ETags, but you need a short
string that is unique for that content. In the worst case, you have to generate
all the content first, then instantiate HTTP_ConditionalGet, setting
the array key contentHash
to the output of a hash function of the
content. Since we have the full content, we might as well also use
setContentLength(strlen($content))
in the case where we need to
send it.
This script emulates a document that changes every 20 seconds.
This is version: Thu, 14 Nov 2024 21:49:20 -0800
For these pages all 200 responses are sent in chunks a second apart, so you should notice that 304 responses are quicker. You can also use HTTP sniffers like Fiddler (win) and LiveHTTPHeaders (Firefox add-on) to verify headers and content being sent.
must-revalidate
Cache-Control value unless max-age
is set. To get Opera to follow the spec, ConditionalGet will send Opera max-age=0
(if one is not already set).