Speed up AJAX based webapps with caching
Vivek Jishtu über die Probleme beim Caching von Javascript Dateien und wie er das umgangen hat.
A website like digg takes up more than a minute to load on my dialup connection even though the main page is no more than a 27-32 KB. The real time is taken up by the JavaScript files. The solution for this problem is to cache the JavaScript files. Though caching improves the speed but it causes a problem when you have to update the JavaScript files, since the browser will not look for updated files if they have been cached.

