Ajax

TwitterFacebook
Get flash to fully experience Pearltrees
http://ajaxpatterns.org/Browser-Side_Cache#A_Finite_Cache

Browser-Side Cache

From Ajax Patterns Evidence: 1/3 Tags: Auto-Update Memoise Memoize Sync Synchronise Sychronize Real-Time Image: data pulled down and kept locally. Tracy is tweaking parameters to run a complex mathematical calculation. The last thousand results are retained by the browser, so each time she attempts to perform one of those calculations, the browser shows the result automatically, saving a trip to the server and improving user experience.
http://hungred.com/how-to/tutorial-stop-caching-jquery-javascript/ There are many reason people want to disable or stop caching by broswer. Especially when we are dealing with dynamic content that required the latest version to be displayed on the browser. However, due to security reason there are no perfect methods in javascript that can disabled caching for all browsers.

Tutorial: How to stop caching with jQuery and javascript

Introduction Ajax is a great tool to create more dynamic web pages and enhance user interaction. With Ajax, we can contact our server from our Javascript code and get data from the server without having to reload the page. In this tutorial, we will see how to use Ajax in your Javascript code. We will create a "dynamic content" script like the one you can download from the Ajax section on this site. http://www.dhtmlgoodies.com/index.html?whichTutorial=ajax-basics

The easiest ONE