vote up 1 vote down star
1

I am trying to rely upon the browser cache to hold JSON data returned from AJAX calls in jQuery.

Normal browser activity relies upon the browser cache all the time. Example: jpg and gif images are not refetched on a page reload.

But when I try using jQuery getJSON ajax calls, I cannot seem to avoid fetching the data from the server.

My returned headers look like this (confirmed with firebug):

Transfer-Encoding: chunked
Date: Wed, 05 Aug 2009 02:55:39 GMT
Content-Type: text/plain; charset=ISO-8859-1
Expires: Wed, 05 Aug 2009 03:55:39 GMT
Cache-Control: max-age=3600

Yet an immediate refresh of the page causes identical requests to hit the server.

I've seen several postings about avoiding caching behavior, which isn't what I need. I've seen several postings about utilizing caching, but those all seem to rely upon saving data in the DOM. I want something that behaves just like cached images do during a page reload.

Cant the browser just fetch it from it's own cache?

--x--x--x--x UPDATE --x--x--x--

Much to my disappointment, several respectable folks agree that this isn't just possible. Some even argue that it shouldn't be (which still baffles me).

Stubburn to a fault, I tried the following:

I set the Etag header on all outgoing pages I want to be cached (I pick a few choice URL arguments that represent the data I'm requesting and just use that for the Etag value)

At the beginning of the next request, I simply check if the 'If-None-Match' header is in the request. If so, then the browser isn't caching the request like I wanted, so I sent a 304 Not Modified response.

Testing shows that Firefox won't cache my request (but I can still avoid the 'fetch the expensive data' part of my cgi), while IE6 will actually cache it (and wont even attempt fetching back from the server).

It's not a pretty answer, but it's working for me for now
(those pesty full-page refreshes of graph data wont be so slow or expensive now).

(What? I'm running IE6! OMG! Oh look a squirrel!)

flag
maybe I need to use if-modified-since requests to convert these to HTTP 304 status codes? – ericslaw Aug 5 at 3:17
darn, not even 'if-modified-since' headers being sent in request... so much for 304 approach – ericslaw Aug 5 at 4:29
I had some luck with setting Etag on initial request and returning 304 if 'If-None-Match' header exists on later requests. – ericslaw Aug 5 at 5:10

5 Answers

vote up 3 vote down check

Ajax caching is possible and predictable (at least in IE and Firefox).

This blog post discusses Ajax caching and has a demo web page:

http://blog.httpwatch.com/2009/08/07/ajax-caching-two-important-facts/

There's also a follow up by Steve Souders on the F5 issue:

http://stevesouders.com/tests/ajax_caching.php

link|flag
vote up 0 vote down

While not the "browser cache" what about session state or some other form of client side saving. You will still have to look into an if modified since situation as mentioned in your comment.

The browser won't natively know if the data has been changed or not since json did retrieve dynamically and what is in the cache is static. I think?

link|flag
vote up 0 vote down

The short answer is no. Unfortunately, browsers do not reliably cache AJAX requests in the same way that they do "normal" pages. (Although the data may in fact be cached, the browser often doesn't use the cache when handling AJAX requests the way you would expect.) This should change in the future, but for now you have to work around it.

link|flag
Yeah. It is inconsistent at best. Sometimes they do when you're least expecting it. – jason Aug 5 at 3:37
vote up 0 vote down

You may want to check your resources using the Resource Expert Droid, to make sure they’re doing what you intend. You should also run a network trace to double-check the request and response headers, using something like Wireshark, in case Firebug isn’t telling the full story.

It’s possible that jQuery is including some request headers in a way that the browser decides should bypass the cache. Have you tried a plain XMLHTTPRequest without a framework?

link|flag
website is not public, so cannot use redbot, but thanks. wireshark shows the same headers than firebug shows. I have not tried XMLHTTPRequest directly (pointer to a how-to for that?) – ericslaw Aug 5 at 4:22
The classic XMLHTTPRequest reference: developer.apple.com/internet/webcontent/… If you're really keen, you can install redbot locally. – Carey Aug 5 at 5:08
vote up -1 vote down

The point of AJAX is to allow the page to update portions of the content without refreshing the whole page.

Just because the request is the same, doesn't mean the answer will be.

Child: Are we there yet?? Parent: No. Child: Are we there yet?? Parent: No!! Child: Are we there yet?? Parent: Yes, we are there now.

Just because the question was the same each time, doesn't mean the answer has to be. Just like the child in the example, the browser has no way of knowing if it will get the same answer next time it asks. That makes it impossible to cache the result (since it is supposed to, by definition, change from time to time).

link|flag
but I am crafting the response from the web server to clue the browser that it is the same answer each time... Isn't that what 'Expires' is for? – ericslaw Aug 5 at 4:10
Originally yes, for pages that might change now and then. The reason is that fetching the entire page is expensive (and more so back in the dialup-modem days). The idea is to avoid refetching content that is probably the same. The idea behind AJAX is that you EXPECT that the content will change almost every time (opposite concept). In theory a browser could respect Expires tags for AJAX. Since the purpose of Ajax is fundamentally different than the purpose of content caching, it does not surprise me that they seem not to. Maybe consider another technology choice if you need caching? – Eric J. Aug 5 at 4:43

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.