You need to sign in to do that
Don't have an account?

Improving performance of Sites platform
I've been running ySlow on our Sites pages to optimize our sites config for production. In doing so, I've found a number of areas that can be improved, but are out of our control due to being handled directly by the platform.
Grade F on Add Expires headers
There are 4 static components without a far-future expiration date.
- (no expires) /static/101210/js/functions.js
- (no expires) /jslibrary/1291243772000/main.js
- (no expires) /static/101210/desktop/desktopAjax.js
- (no expires) /static/101210/js/picklist.js
Web pages are becoming increasingly complex with more scripts, style sheets, images, and Flash on them. A first-time visit to a page may require several HTTP requests to load all the components. By using Expires headers these components become cacheable, which avoids unnecessary HTTP requests on subsequent page views. Expires headers are most often associated with images, but they can and should be used on all page components including scripts, style sheets, and Flash.
Since these components are static, and clearly versioned by URL, setting a far-future expires header should definitely be done for these.
Also, these 3 files are not minified, but should be, to ensure faster download.
/static/101210/js/functions.js
/static/101210/desktop/desktopAjax.js
I'd also like to request that the CDN be used for delivering static resource content over SSL, if not done already. Since this content is static on both SSL and non-SSL browsing, using the CDN to deliver it is a better strategy for performance of the site, as well as reduced load on SF's SSL front end.
Great suggestions Paul, can you post to the IdeaExchange and give us the link so that we can vote it up?