Cache AJAX requests - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T03:29:27Z http://stackoverflow.com/feeds/question/650440 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/650440/cache-ajax-requests 0 Cache AJAX requests Willem 2009-03-16T13:34:29Z 2009-03-16T14:31:12Z <p>I am sending AJAX GET-requests to a PHP application and would like to cache the request returns for later use.</p> <p>Since I am using GET this should be possible because different requests request different URLs (e.g. getHTML.php?page=2 and getHTML.php?page=5).</p> <p>What headers do I need to declare in the PHP-application to make the clients browser cache the request URL content in a proper way? Do I need to declare anything in the Javascript which handles the AJAX-request (I am using jQuery's $.ajax function which has a cache parameter)?</p> <p>How would I handle edits which change the content of e.g. getHTML.php?page=2 so that the client doesn't fall back to the cached version? Adding another parameter to the GET request e.g. getHTML.php?page=2&amp;version=2 is not possible because the link to the requested URL is created automatically without any checking (which is preferably the way I want it to be).</p> <p>How will the browser react when I try to AJAX-request a cached request URL? Will the AJAX-request return success immediately?</p> <p>Thanks</p> <p>Willem</p> http://stackoverflow.com/questions/650440/cache-ajax-requests/650469#650469 0 Answer by Maurice Perry for Cache AJAX requests Maurice Perry 2009-03-16T13:44:08Z 2009-03-16T13:44:08Z <p><a href="http://developer.yahoo.net/blog/archives/2007/05/high%5Fperformanc%5F2.html" rel="nofollow">http://developer.yahoo.net/blog/archives/2007/05/high_performanc_2.html</a> <a href="http://developer.yahoo.net/blog/archives/2007/07/high%5Fperformanc%5F11.html" rel="nofollow">http://developer.yahoo.net/blog/archives/2007/07/high_performanc_11.html</a></p> http://stackoverflow.com/questions/650440/cache-ajax-requests/650677#650677 1 Answer by Razvan Caliman for Cache AJAX requests Razvan Caliman 2009-03-16T14:31:12Z 2009-03-16T14:31:12Z <p>Once you refresh the page, you'll still be making server calls for content, even though you've requested them before. PHP headers won't help you out with that.</p> <p>I think what you need is a client-side caching mechanism of content already requested from the server in the current page.</p> <p>For this use-case you can use a hash table in JavaScript and query that before you make a call to the server. This will enhance user experience since the user won't have to wait for another request of content he's already seen.</p> <p>Here's an example:</p> <pre><code>//placeholder for hash table as cache var cache = []; var getPage = function(pageNr){ if(cache[pageNr]){ //content is already in cache, use it from there handleContent(cache[pageNr]); } else{ //object with parameteres sent with GET request var params = {}; params.page = pageNr; $.ajax({ url: "getHTML.php", data: params, cache: false, success: function(response){ //handle your response here handleContent(response); //store the response in the cache for later use cache[pageNr] = response; } }); } }; </code></pre> <p>Now requesting pages will first look in the current cache to see if you have the content. If not, it will make the server call and store the response in the cache. </p> <p>It is similar to the user-experience when scrolling through news in <a href="http://www.google.com/finance?q=goog" rel="nofollow">Google Finance</a></p> <p><strong>NOTE that if you refresh the page this cache will be erased.</strong></p> <p>In case of edits to a page you will have to use Maurice Perry's links to Yahoo Exceptional Performance in order to ensure that your server is always returning your latest version of content.</p> <p>More on hash tables in JavaScript: <a href="http://www.mojavelinux.com/articles/javascript%5Fhashes.html" rel="nofollow">http://www.mojavelinux.com/articles/javascript_hashes.html</a></p>