Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

It looks like that if I load dynamic content using $.get(), the result is cached in browser. Adding some random string in QueryString seem to solve this issue (I use new Date().toString()), but this feels like a hack.

Is there any other way to achieve this? Or, if unique string is the only way to achieve this, any suggestions other than new Date() ?

share|improve this question

13 Answers

up vote 55 down vote accepted

I use new Date().getTime(), which will avoid collisions unless you have multiple requests happening within the same millisecond.

share|improve this answer
7  
I'm not sure why people keep voting this down, it's a perfectly good solution and is actually used internally by jQuery. If you're going to downvote this, at least leave a comment explaining why you did so—if there's a good reason then please let the rest of us know. – Mark Bell Oct 5 '10 at 6:06
3  
I will downvote only because it's cleaner to let jQuery do this as in the answer by Peter J. Your solution will work, but is more difficult to maintain in the long run. – Niklas Ringdahl Jan 13 '11 at 12:46

The following will prevent all future AJAX requests from being cached, regardless of which jQuery method you use ($.get, $.ajax, etc.)

$.ajaxSetup({ cache: false });
share|improve this answer
1  
Seems like this solution should have at least been voted up so I did :) I just used this solution, and it works for me in IE6. Uses the built-in functionality of jQuery, which makes sense to me if you are using jQuery, as I am. It also seem nice and tidy to me rather than writing more of my own code to generate random numbers. If there is a drawback to this approach that I am missing, feel free to point it out. Otherwise, thanks for pointing that out Peter J! – Carvell Fenton Jan 7 '10 at 18:21
Upon investigation (Fiddler), it looks like jQuery implements this internally by simply appending a timestamp anyway (as discussed elsewhere in these answers). To me, the .ajaxSetup method is cleaner (in my opinion.) – Peter J Jan 29 '10 at 22:33
Nice and clean - great! :-) – Niklas Ringdahl Jan 13 '11 at 12:47
Why does this need to be inside the document ready call? How can I be sure that none of my other document ready handlers (with ajax calls) will fire before this one? – Mvision Jun 28 '11 at 15:29
6  
Indeed it does not need to be inside the document ready call. – Peter J Jul 15 '11 at 21:14
show 2 more comments

JQuery's $.get() will cache the results. Instead of

$.get("myurl", myCallback)

you should use $.ajax, which will allow you to turn caching off:

$.ajax({url: "myurl", success: myCallback, cache: false});
share|improve this answer
10  
+1 This is the correct answer. Peter J's solution of globally disabling caching is a bad practice IMO. – SalmanPK Apr 19 '12 at 13:48
3  
Important to note that it's only "global" for the page / request. – Peter J May 9 '12 at 15:39

another way is to provide no cache headers from serverside in the code that generates the response to ajax call:

response.setHeader( "Pragma", "no-cache" );
response.setHeader( "Cache-Control", "no-cache" );
response.setDateHeader( "Expires", 0 );
share|improve this answer
7  
Incorrect. In IE, the no-cache headers are ignored for XMLHttpRequest calls, as discussed here: stackoverflow.com/questions/244918/… The DateTime (or my .ajaxSetup method) are the only solutions that actually work. – Peter J Jan 29 '10 at 22:35
i've just pasted my usual no cache mantra, it's not stated that it's IE specific – miceuz Feb 1 '10 at 11:46

Personally I feel that the query string method is more reliable than trying to set headers on the server - there's no guarantee that a proxy or browser won't just cache it anyway (some browsers are worse than others - naming no names).

I usually use Math.random() but I don't see anything wrong with using the date (you shouldn't be doing AJAX requests fast enough to get the same value twice).

share|improve this answer
2  
Combine Date().getTime() together with Math.random() and you should be on the safe side. On a side note, Ext.Ajax also uses getTime() when disableCaching is specified. – vividos Dec 15 '08 at 9:53

The real question is why you need this to not be cached. If it should not be cached because it changes all the time, the server should specify to not cache the resource. If it just changes sometimes (because one of the resources it depends on can change), and if the client code has a way of knowing about it, it can append a dummy parameter to the url that is computed from some hash or last modified date of those resources (that's what we do in Microsoft Ajax script resources so they can be cached forever but new versions can still be served as they appear). If the client can't know of changes, the correct way should be for the server to handle HEAD requests properly and tell the client whether to use the cached version or not. Seems to me like appending a random parameter or telling from the client to never cache is wrong because cacheability is a property of the server resource, and so should be decided server-side. Another question to ask oneself is should this resource really be served through GET or should it go through POST? That is a question of semantics, but it also has security implications (there are attacks that work only if the server allows for GET). POST will not get cached.

share|improve this answer
What if you are going through proxy servers that you don't control their caching policy? what if your app explicitly needs to do a new request every time? The answer to things are not always clear cut black and white, there are always gray areas. – 7wp Mar 31 '11 at 4:36

You can use the short notation $.now() instead of doing a (new Date().getTime()) each and everytime.

share|improve this answer

A small addition to the excellent answers given: If you're running with a non-ajax backup solution for users without javascript, you will have to get those server-side headers correct anyway. This is not impossible, although I understand those that give it up ;)

I'm sure there's another question on SO that will give you the full set of headers that are appropriate. I am not entirely conviced miceus reply covers all the bases 100%.

share|improve this answer

Of course "cache-breaking" techniques will get the job done, but this would not happen in the first place if the server indicated to the client that the response should not be cached. In some cases it is beneficial to cache responses, some times not. Let the server decide the correct lifetime of the data. You may want to change it later. Much easier to do from the server than from many different places in your UI code.

Of course this doesn't help if you have no control over the server.

share|improve this answer

What about using a POST request instead of a GET...? (Which you should anyway...)

share|improve this answer
I think that's a better solution, but sadly I (somehow) can only do GET request. So.. it's new Date().getTime() for now. – Salamander2007 Dec 16 '08 at 0:46

Maybe you should look at $.ajax() instead (if you are using jQuery, which it looks like). Take a look at: http://docs.jquery.com/Ajax/jQuery.ajax#options and the option "cache".

Another approach would be to look at how you cache things on the server side.

share|improve this answer
Unfortunately, after some investigation, using $.ajax() and set cache = false will basically do the same thing. jQuery will add some random number to the querystring, and it doesn't check for existing querystring. So I guess using $.get() will suffice. – Salamander2007 Dec 15 '08 at 9:33
Ah okey. Never tried it, just remembered i'd seen something about it in the docs :) – finpingvin Dec 15 '08 at 9:59
It's not even necessary to use $.ajax. Simply use .ajaxSetup. – Peter J Apr 9 '09 at 17:12

If you are using IE 9, then you need to use the following in front of your controller class definition:

[OutputCache(NoStore = true, Duration = 0, VaryByParam = "*")]

public class TestController : Controller

This will prevent the browser from caching.

Details on this link: http://dougwilsonsa.wordpress.com/2011/04/29/disabling-ie9-ajax-response-caching-asp-net-mvc-3-jquery/

Actually this solved my issue.

share|improve this answer

For those of you using the cache option of $.ajaxSetup() on mobile Safari, it appears that you may have to use a timestamp for POSTs, since mobile Safari caches that too. According to the documentation on $.ajax() (which you are directed to from $.ajaxSetup()):

Setting cache to false will only work correctly with HEAD and GET requests. It works by appending "_={timestamp}" to the GET parameters. The parameter is not needed for other types of requests, except in IE8 when a POST is made to a URL that has already been requested by a GET.

So setting that option alone won't help you in the case I mentioned above.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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