Development Practices to Improve Page Load Time
You get the point, right? Website performance is important and cannot be ignored. Now let’s discuss a few best practices to improve your website’s page load time.
- Reduce what you send to the browser. Reducing the amount to data transferred to the browser should be your number one priority when it comes to reducing page load. This can be accomplished by compressing and optimizing images and always serve scaled-to-size images. Remove any unused CSS or JavaScript and then minify your CSS and JavaScript. Finally, enable a server-side compression like GZip. Most modern browser supports this data compression, and it will significantly reduce the amount of data passed from the server to the client browser.
- Optimize what you send to the browser. Remove all JavaScript errors and 404 errors that occur on the page. These types of requests can cause long delays and often cause browsers to crashes. Also use efficient CSS selectors. A poor performing selector that has to search the entire DOM object can significantly slow down your load time. Remove any unnecessary markup, avoid CSS expressions & imports, and put your CSS declarations in the document header. Look for opportunities to condense and combine CSS files and JavaScript files. Finally, defer parsing of JavaScript on page load is extremely helpful to mobile devices.
- Let the browser cache resources for you. Take full advantage of browser caching. It does not cost you anything, and it significantly reduces the number of requests for static resources from your server. Make sure you read the Google’s Page Speed section about browser caching best practices to understand it fully. This alone will reduce your server load and improve user experience.
- Implement Data Caching from the server side. One often overlooked caching option is data and server side caching. From the application side, you can choose which parts of the page can be cached on the server. For example, headers and footers rarely change and can be cached from the server side using techniques like output caching. Dynamic content delivered from a database should also be cached when possible. Content delivered from data cache is usually stored in memory on the server, so the server can access and deliver the data faster than making a round trip to the DB. Make sure to implement data caching for the heaviest requested areas of your site!
- Reduce DNS look-ups and redirects. Reduce the number of unique domain requests as much as possible. This will reduce the number of DNS lookups, which can be costly in the loading process. Also, ensure that your DNS Time to Live (TTL) are not too low because this forces some browsers to do more frequent and unnecessary DNS lookups. Finally, reduce or eliminate unneeded redirects.
There are many different platforms and frameworks available, but these concepts are the same across all of them, whether it’s Linux/PHP or Windows/.NET or some other framework. There are also some excellent development tools to manage site performance such as Firebug, Chrome, etc. Personally, I find the Firefox – Fire Bug development tool with the Google Page Speed Plugin as my most valuable tools in this process. These two tools together will allow you to see every resource that is downloaded and will quickly identify 404 and JavaScript errors. You can view the headers to see if the resources are compressed and see how long it takes to download each one. Your target goal should be 3 seconds or less for page load time before you turn on browser caching. Start with the homepage and other high traffic entry pages, then as time permits, hit the other pages.
Well, that’s it for now… Happy performance optimizing, and remember: it’s everyone’s responsibility to manage site performance, from graphic designers to developers and even content publishers.
May 4, 2019
Website Speed really a matter for any business, if you website loads with low speed then you will lose a lot of your business. Thanks for sharing those suggestions for page speed optimizations. It will encourage entrepreneurs to work more effectively on digital marketing and gain potential results from it. I would like to be here again to find another masterpiece article.
February 13, 2018
One more addition to your tips. We also need to test website performance across all the devices i.e desktop, tabs and mobiles because website users use different kinds of devices.
July 27, 2017
I tried to implemented the techniques suggested by you but optimising CSS delivery and minifying resources were a bit technical for me! complicated for me.
Thanks for a great article though!
July 18, 2017
This was a good read!
December 21, 2016
Good article! We know website speed is a key factor for google ranking. In order to achieve high ranking website load time should be fast which can be done by reducing HTTPS, CSS, javascript, Using CDN & Optimizing images.
April 16, 2014
Good post, Tom. How often should sites be checked/optimized after that initial optimization?
April 16, 2014
Minimum of twice a year. But if your content or plugins change frequently then I suggest at least quarterly and after large updates to the site. Remember every new plugin introduces new areas for possible optimization.