I want to improve the page load times of a web site. It is a web application (think something like web mail) with relatively few users that spend long periods using the site.
As almost all page requests are from users that have already used the site, images, css and external javascript resources will have been cached by the browser during previous requests. As the browser doesn't need to request those resources again, am I right that the following performance tips won't give me any improvements in response speed?:
- CSS sprites
- parallel downloading of images using alternative domain names
- placement of Javascript includes at the foot of the page
Does anyone have any performance tips that are likely to improve response times for this kind of web site.