Tagged Questions

4
votes
2answers
3k views

HTTP Cache Control max-age, must-revalidate

I have a couple of queries related to Cache-Control. If I specify Cache-Control "max-age=3600, must-revalidate" for a static html/js/images/css file, with Last Modified Header defined in HTTP ...
3
votes
2answers
130 views

HTTP caching in WCF Web API seems inconsistent across browsers

I'm implementing a simple REST service with the WCF Web API and attempt to set HTTP headers in order to cache responses. For a simple GET like this http://localhost:49302/my/2 the response headers ...
3
votes
0answers
321 views

Cache-control in Tomcat

We have run into a problem with Internet Explorer where it is unable to handle the Cache-control header set to no-store for SSL downloads. See http://support.microsoft.com/kb/323308 for more details. ...
3
votes
5answers
241 views

What's the best way to learn about HTTP, the TCP stack, and cache-control headers?

Recently I read a software engineer job description. The requirements included knowing how the web works from HTTP to HTML, improving the performance of the TCP stack in Linux, and knowing how ...
2
votes
1answer
92 views

Expires vs max-age, which one takes priority if both are declared in a HTTP response?

If a HTTP response that returns both Expires and max-age indications which one is used? Cache-Control: max-age=3600 Expires: Tue, 15 May 2008 07:19:00 GMT Considering that each one refers to a ...
2
votes
2answers
453 views

Understand If-Modified-Since HTTP Header

I am looking at a Caching library that is trying to use the "If-Modified-Since" header of a request object. The problem is this header never gets set, it is always blank which makes sense to me seeing ...
2
votes
4answers
4k views

Howto deactivate caching inside a jsp page

I understand there is a HTTP response header directive to disable page caching: Cache-Control:no-cache I can modify the header by "hand": <%response.addHeader("Cache-Control","no-cache");%> ...
1
vote
1answer
107 views

Chrome browser is not sending if-modified-since header to server

I have these headers being sent to the client by the server: Cache-Control:private Connection:keep-alive Content-Encoding:gzip Content-Type:text/html Date:Sun, 27 Nov 2011 11:10:38 GMT ...
1
vote
0answers
198 views

Cache-Control: private in Spring-MVC

WebContentInterceptor is nice, but I can't find how to make it add the "private" directive to the CacheControl HTTP header. I either need to subclass it, or use response.setHeader in my controllers. ...
1
vote
1answer
384 views

HTTP Headers: Is Cache-Control enough, or do I still need Expires?

HTTP 1.1 introduced a new class of headers, Cache-Control response headers, to give Web publishers more control over their content, and to address the limitations of Expires. Expires is kind of a ...
1
vote
1answer
823 views

How necessary it is to use “must-revalidate” in “Cache-Control: no-cache, must-revalidate”

Often I use Cache-Control: no-cache or Cache-Control: max-age=0 The spec says must-revalidate is for max-stale... (the server issue max-stale?) So if for normal web servers, Apache, or Rails ...
0
votes
0answers
28 views

Browser Resource Caching (Images, Javascript, CSS)

I am having trouble with caching on a website that I'm working on updating. Many of the resources I've updated (javascript, css, and image files) appear to be cached locally by browsers. What I can't ...
0
votes
1answer
85 views

HTTP Caching: Why use ETag instead of Cache-Control and/or Expires?

I had been reading about HTTP browser caching and playing around with it on my own site when I noticed that jQuery's Media Temple ProCDN backed library: http://code.jquery.com/jquery-1.7.1.min.js ...
0
votes
1answer
14 views

Is it valid to list multiple fields in a single Vary header?

I know you can do this Vary: Accept-Encoding Vary: Accept-Language but can you do this Vary: Accept-Encoding, Accept-Language
0
votes
2answers
66 views

Cache-Control Headers

I'm writing a small wrapper in PHP for the Cache-Control headers. I wanted to get a few details straight before I commit to a particular implementation. I'm aware of all the directives and what ...
0
votes
1answer
76 views

Firefox max-age based cache expiration behaving weirdly

Im working on a virtual globe web application which serves a lot of map tiles, and i am trying to tweak the http headers that my server is sending to indicate the browser (Firefox) an expiration time ...
0
votes
1answer
104 views

Which cache-control info is right?

Using LiveHttpHeaders for Firefox 6 I was trying to see if my css, JS files being cached using Headers Module from Apache using htaccess. But I confuse, there are 2 values from the 'Cache-Control' ...
0
votes
1answer
116 views

Max value for cache control header in HTTP

I'm using Amazon S3 to serve static assets for my website. I want to have browsers cache these assets for as long as possible. What meta-data headers should I include with my assets Cache-Control: ...
0
votes
1answer
41 views

Ensure responses are not cached

I have a particular HTTP response which I don't want cached because it has private/sensitive data in it I'm already setting Cache-Control to no-store, which should handle clients supporting ...
0
votes
1answer
65 views

Cache file mapped by url in the browser

I have a method mapped in a url like /foo/*/image which downloads an image, and I want the browser to cache that picture. But I'm not getting it. I can see in Firefox with firebug that the request is ...
0
votes
1answer
148 views

Http headers to cache a dynamic page

I have a classic html page generated with PHP. For this page (served from a same URL) we have 2 cases: The user is logged (cookie based) => the page is specific to the user (we display a box with ...
0
votes
1answer
96 views

Having trouble getting browsers to cache content

Sorry that this appears to be very similar to a number of other questions, but I have looked at all related posts I can see, but they don't seem to have quite the same issue as I do ;-) The problem ...
0
votes
1answer
379 views

Understand Etags HTTP Header

I am using a caching library that has the function seen below. It is attempting to grab eTags from the Request on the 5th line but the eTags are never set. When would a REQUEST have eTags? and how ...
0
votes
1answer
394 views

Cache-control: private and public

What should a http client do if server returned Cache-Control: private, public ? I have a feeling private should override public, but I can't find a confirmation in the RFC (other than MUST in ...
0
votes
1answer
793 views

HTTP Cache-Control: What is acceptable default behavior when it's not present?

I'm running into some HTTP caching issues, caused by some downstream apps not putting Cache-Control headers on time-sensitive data. I need to make the case that this is a broken situation. Is there ...