Tagged Questions
The http-caching tag has no wiki summary.
11
votes
5answers
316 views
REST: Should I redirect to the version URL of an entity?
I am currently working on a REST service. This service has an entity which has different versions, similar to Wikipedia articles.
Now I'm wondering what I should return if for
GET /article/4711
...
8
votes
1answer
3k views
How to use CXF, JAX-RS and HTTP Caching
The CXF documentation mentions caching as Advanced HTTP:
CXF JAXRS provides support for a number of advanced HTTP features by handling If-Match, If-Modified-Since and ETags headers. JAXRS Request ...
3
votes
2answers
144 views
'Vary: If-None-Match' to cache mobile and desktop requests seperately
Note: Please correct me if any of my assumptions are wrong. I'm not very sure of any of this...
I have been playing around with HTTP caching on Heroku and trying to work out
a nice way to ...
3
votes
1answer
142 views
HTTP: Combining expiration and validation caching
I'm having trouble formulating HTTP cache headers for the following situation.
Our server has large data that changes perhaps a couple times a week. I want browsers to cache this data. Additionally, ...
3
votes
1answer
99 views
Why is Google's home page logo served with contradictory “Expires” and “Cache-Control” headers?
Here is the logo currently used on www.google.com:
http://www.google.com/images/logos/ps_logo2.png
Here's its HTTP response:
HTTP/1.1 200 OK
Content-Type: image/png
Last-Modified: Thu, 05 Aug 2010 ...
3
votes
2answers
483 views
response.setDateHeader() - caching not working
I want .png files in my web page to be cached. I added the following entry in web.xml
<filter>
<filter-name>ContentFilter</filter-name>
...
3
votes
3answers
208 views
caching headers from PHP
In PHP, by default no cache related headers are sent.
HTTP/1.1 200 OK
Date: Fri, 19 Nov 2010 11:02:16 GMT
Server: Apache/2.2.15 (Win32) PHP/5.2.9-2
X-Powered-By: PHP/5.2.9-2
Vary: Accept-Encoding
...
3
votes
2answers
159 views
How do you cache a file client-side such that the browser stops even bothering to request it again?
I send back an image with the following HTTP response header:
Cache-Control: private,max-age=86400
My understanding is that the browser should not even ask for this file for 24 hours (86,400 = 60s ...
3
votes
3answers
4k views
Leverage browser caching
I have a website and when I check page speed with Google plug-in, I receive:
Leverage browser caching
The following resources are missing a cache expiration
Searching only returns information ...
2
votes
1answer
48 views
Should I include media type in my ETag?
When adding an ETag to an HTTP response, should I include the media type? Of course, I understand that the ETag is opaque, but here is an example:
Say I have a client that requests a Person in ...
2
votes
2answers
51 views
Caching considerations for REST collection and individual items
I'm working on a new REST-ful API who's primary/only consumer will be a smart/non-web-browser client. I have a collection resource that is maintained/updated by background processes, not by the client ...
2
votes
1answer
91 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
3answers
287 views
JSON-API in NodeJS behind Apache webserver: Best practices to handle caching and compression?
I wrote a JSON-API in NodeJS for a small project, running behind an Apache webserver. Now I'd like to improve performance by adding caching and compression. Basically, the question is what should be ...
2
votes
1answer
166 views
Caching login forms with Ruby on Rails
I have a Rails 3 website, for which the home page is static content plus a login form. I want to use HTTP caching on this page (we’re on Heroku - behind Varnish), but then the login form's ...
2
votes
1answer
162 views
Lazy HTTP caching
I have a website which is displayed to visitors via a kiosk. People can interact with it. However, since the website is not locally hosted, and uses an internet connection - the page loads are slow.
...
2
votes
3answers
210 views
c# Cache Control in code or IIS 6
When one of my websites is view over a mobile 3G network the network operator o2 in this case is rewriting the page and embedding all the styles in-line, this is causing the page to break. As the ...
2
votes
2answers
777 views
Difference between three .htaccess expire rules
What's the difference between the following three .htaccess rules and when to use each, is there any special use cases that prefers one over the other?:
Header set Cache-Control "max-age=290304000"
...
2
votes
0answers
98 views
ASP.NET: How to enforce a reload of a web static file
When doing webpages, the client/browser decides if it updates a file like an image or .css or .js or if it takes that from the Cache.
In case of .aspx page it is the server who decides.
Sure, on ...
2
votes
2answers
591 views
Css background images not being cached by FireFox
I am dynamically adding <link> tags to the page using YUI3 and this works properly.
For testing purposes I have two nearly identical css files which include the exact same background images ...
1
vote
0answers
13 views
Disable ServiceStack 304s?
I have an IService that when jQuery.ajax requests it in IE, ServiceStack always returns a 304 and doesn't execute my service. I've tried ResponseFilters, switching to RestServiceBase, and returning a ...
1
vote
2answers
43 views
How to trigger browser html refresh for cached html files?
YSLOW suggests: For static components: implement "Never expire" policy by setting far future Expires header.... if you use a far future Expires header you have to change the component's filename ...
1
vote
0answers
45 views
HTTP Caching, User Authentication and PHP
I'm working on some software in PHP and I'm in the process of trying to make it utilize HTTP caching effectively. However, one of the problems I've been having lately is after logging in, pages ...
1
vote
2answers
92 views
How do I implement client side http caching like a browser?
I use a RESTFul service as a backend to my frontend. The service sets expires/etag/lastmodified headers on it's responses.
What I'm looking for is a client-side(favorably java) library which can ...
1
vote
1answer
108 views
What is the meaning of the HTTP header Vary:*
As far as I know, the HTTP Header Vary specifies a comma separated list of HTTP headers that need to be considered by caches together with the URL when deciding if a request is a cache hit or miss.
...
1
vote
2answers
180 views
OutputCache.VaryByHeader is not generating a Vary header in the response
I have this action method:
[OutputCache(Duration = 2,
Location = OutputCacheLocation.Any,
VaryByHeader = "Accept-Charset")]
public ActionResult Index()
...
1
vote
0answers
51 views
Enabling mod_expire depending on request
Instead of generating links to file.js, I'm calculating a version number or hash sum and linking to file--bbe02f946d.js. I'm using the following redirect rule to then serve the current version of the ...
1
vote
1answer
135 views
I'm trying to use Java's HttpURLConnection to do a “conditional get”, but I never get a 304 status code
Here is my code:
final HttpURLConnection conn = (HttpURLConnection) sourceURL.openConnection();
if (cachedPage != null) {
if (cachedPage.eTag != null) {
...
1
vote
1answer
143 views
equivalent of .net output cache in node.js?
New to node coming over from asp.net so was curious about the best modules/frameworks to implement caching in node.js. I would like to cache some expensive db queries so looking for an easy way to ...
1
vote
0answers
64 views
What is HTTP cache best practices for high-traffic static site?
We have a fairly high-traffic static site (i.e. no server code), with lots of images, scripts, css, hosted by IIS 7.0
We'd like to turn on some caching to reduce server load, and are considered ...
1
vote
3answers
165 views
Smart solution for expires headers
We want to set expires headers for used images, css and javascript to improve pagespeed, but we are aware of the cachingproblem when modifying a css or js script.
Is it possible to add a meta or ...
1
vote
2answers
335 views
Fiddler showing cache hits?
I just wanted to check if my HTTP caching for my website is working especially since I moved to a CDN.
Now I used both Fiddler and Firebug and what I am seeing is that requests for ALL scripts and ...
1
vote
1answer
561 views
Safari Mobile (Ipad) doesn't seem to cache my telerik and Microsoft CDN resource files used by my aspx page
I have an aspx web page with various Telerik RadControls on it and each time this page is loaded, Safari mobile seems to download all the resource files again - for example the following files are ...
1
vote
1answer
237 views
SetLastModified ignored when using an OutputCacheAttribute
I've got an ASP.NET MVC method (v3.0 on .NET 4.0) set up like the following:
[OutputCache(Duration = 31536000, Location = OutputCacheLocation.Any)]
public virtual ActionResult Item()
{
...
1
vote
1answer
269 views
Is it possible to do donut caching in Varnish?
I'm an ASP.NET developer trying to learn a little bit more about how caching is done on open-source stacks. I was wondering if it's possible to do donut caching on Varnish like how you can with ...
1
vote
2answers
162 views
How can I force browsers to not re-request a resource on refresh?
I'm trying to force the browser to cache different resources like CSS, images, js and so on forever. It is important for the browser to never try to refresh the images/css since on a page there might ...
1
vote
4answers
238 views
How can I stop browsers caching my web page using HTTP 1.1 headers?
Although I have set Expires to a date in the past, and Cache-Control to no-store, no-cache, I still get one of my web pages cached.
Here are the HTTP headers sent to the browser:
Date: Tue, 02 Nov ...
1
vote
3answers
105 views
Howto: Javascript files always up-to-date
I have a .NET web applications which uses a lot of javascript. The .aspx and the .js files go hand-in-hand together.
Problem: The .aspx files are always up-to-date on the client (not cached) but the ...
1
vote
1answer
448 views
IE ignoring updated cache control headers
I have a website which currently allows caching of its images, however, there was a decision to no longer allow caching. So I proceded to add cache-control and Expires headers to the response header. ...
1
vote
1answer
659 views
How do I set Expires: header when using send_data
I have a method in my controller which uses send_data like this:
def show
expires_in 10.hours, :public => true
send_data my_image_generator, :filename => "image.gif", :type => ...
1
vote
3answers
71 views
Why is a file requested through https after it has already been fetched through http?
I am trying to understand Http/Https a little better and possibly what headers I'm sending clients.
Does the client have to re-fetch the same file under Https when it has already been fetched under ...
1
vote
1answer
66 views
Does the `Expires` HTTP header needs to be consistent across multiple cold-cache requests?
I'm implementing a custom web server of a kind. And am looking into adding an Expires header support. However, I'm a little unsure of how exactly to implement it.
If multiple cold-cache requests are ...
1
vote
0answers
557 views
Tomcat: Caching SWF files with varying query strings
I'm current loading my SWF from a JSP, and passing parameters to it via query string (e.g. flash.swf?key=1234abcd) which works fine. The problem is that this appears to disable caching completely. My ...
0
votes
1answer
44 views
How to tell IE6 not to cache the html/page?
I am using the following code using PHP,
header("Cache-control: private");
header('Expires: Mon, 26 Jul 2010 05:00:00 GMT');
header("Last-Modified: Mon, 26 Jul 2010 05:00:00 GMT");
...
0
votes
1answer
47 views
php cache mistake
I have single page in my control panel user which need secret code to
access.
My sequence for doing this are :
go to "secret code request page" with a parameter which page i want to access.
check ...
0
votes
3answers
186 views
Heroku & Rails - Varnish HTTP Cache Not Working
My heroku website's root page is essentially static, it has some ruby code in the view when its generated, but there's nothing specific to a single user, so I'd like to have it cached by Varnish and ...
0
votes
0answers
25 views
How to cache images and reduce client/server traffic?
I have a small website project, containing a few widgets, with lots of image changes (on click, mouse hover, etc...).
I can see that Internet Explorer 7 is sending a GET to my server everytime an ...
0
votes
1answer
43 views
Chrome (and possibly other browsers) caching my script include
PROBLEM:
I am hosting a widget on a client's website that will be different for each page on the site.
To render the widget, the client includes a script tag on their pages. This script tag is ...
0
votes
0answers
36 views
django request.POST data caching
hi have a template with a form and many inputs that pass some data trough a POST request to a view, that process them and send the result to another template. in the final template, if i use the ...
0
votes
0answers
16 views
HTTP Caching - How to cache resources and use it only when offline
I would like to know if there is any way by which we can force the browsers to request for the resource every time when it is online, and use the last fetched version when the browser is offline.
...
0
votes
0answers
44 views
Issue after Deploying ASP.NET Resolved by F5?
I am experiencing an issue at the client side (happen to be using chrome) when I deploy an updated version my ASP.NET application. I'm using some jQuery and javascript in General.
The issue is that ...