Posted by jvieille on August 6, 2011 at 7:07am
I am trying to optimize my sites
- D6 multisites one codebase, separate databases
- APC, cacherouter, Authcache, Boost
Yslow rates F for the followings
Grade F on Make fewer HTTP requests
This page has 3 external stylesheets. Try combining them into one.
This page has 22 external background images. Try combining them with CSS sprites.
Grade F on Add Expires headers
There are 41 static components without a far-future expiration date.
Grade F on Configure entity tags (ETags)
There are 40 components with misconfigured ETags
Is this important? How to improve?
thanks

Comments
A lot of that can be
A lot of that can be addressed by using http://drupal.org/project/advagg, http://drupal.org/project/cdn and http://drupal.org/project/css_emimage.
---
Tomáš J. Fülöpp
http://twitter.com/vacilandois
This article should help
http://www.morningtime.com/Drupal-6x-Performance-Guide/513
Gives you lots of tips about overall performance both in terms of best practices, module selection and serve configuration. I think I had 90+ on Yslow and 95+ on Google PageSpeed. ETags and some of the projects mentioned above definitely help. When doing a CDN I also had a static.mysite.com which was configured to only send "static" data so it would never recheck the things coming across there (images). Great for production environments.
Ex Uno Plures
http://elmsln.org/
http://btopro.com/
http://drupal.psu.edu/
This article really helped
"Morning time" link is a treasure.
Thanks
Yslow A after fixing Etags
in htaccess file, for root domain, just add this to it
<ifModule mod_headers.c>Header unset ETag
</ifModule>
FileETag None
Clear cache, that's it :)
Fixing Etags
My hosting plan is with godaddy and my server is windows, shall i implement this same thing in my webconfig file. .htaccess is not working for me.
www.limraseoweb.com
Please let me know..
Removing ETags through the web.config
Khanis,
Here is a post to help you: http://www.saotn.org/remove-etags-http-header/
here's my magic performance
here's my magic performance conf file; should be able to throw that into an .htaccess file as well if on shared hosting
https://github.com/btopro/elmsln/blob/master/docs/zzz_performance.conf
Ex Uno Plures
http://elmsln.org/
http://btopro.com/
http://drupal.psu.edu/
Thank you!
Thanks for the update!