Monday, October 10, 2011

Optimized Speed of Loading Blog II

Continue with my previous post about "Optimized Speed of Loading Blog". On this occasion I continue to share experiences, about Optimized Speed of Loading a Blog.This article refers to the instructions from google about optimized page speed. Optimization often do to make a fast loading blog is the following
Optimized Page Speed

  • Minimize DNS Lookups
  • That's meaning every resource located at a different server has to have its name resolved, this takes time. Avoiding DNS lookups cuts response times, but reducing parallel downloads may increase response times. If you host multiple properties on the same domain, assign those properties to URL paths rather than separate hostnames.
  • Using CSS external
  • CSS inlined in HTML documents get downloaded every time the HTML document requested. This will increase the size of the HTML document. If the external CSS files cached by the browser, the size of the HTML document is reduced without increasing the number of HTTP requests. Using external files generally produces faster pages because the CSS file is cached by the browser and the size of the HTML document is reduced.
  • Using Java Script external or add Java script on footer.
  • Avoid excessive use of the internal Javascript, so it load much longer. If the external Javascript files cached by the browser, the size of the HTML document is reduced without increasing the number of HTTP requests. If you must use an internal Javascript must be placed on the footer, so the script was called in the final sequence.
  • Spesify Image dimension
  • Identify the specific dimensions of the image, you can speed up the loading of your blog. This is because specifying a width and height for all images allows for faster rendering by eliminating the need for unnecessary reflows and repaints. My suggest used CSS to spesify image dimension.
Well, because it was time for me to rest. So first to share experiences from my blog about "Optimized Speed of Loading Blog". Another time I will share another experience of Build Blog.
post on blog|Optimized Speed of Loading Blog

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.