What are some important optimizations that can be made to a website to reduce the loading time?
|
|
Remove/Minimize any bottlenecks on the server side. For this purpose, use a profiler like Xdebug or Zend Debugger to find out where your application is doing expensive and slow operations. Implement caching where possible. Use an OpCode Cache. If this still isn't fast enough consider investing in more CPU or RAM or SSDs (depending on whether you are CPU, IO or Memory bound) For general server/client side optimizations, see the Yahoo YSlow! User Guide. It basically sums it up to:
Also see the comments contributed below, as they contain some additional useful information for other users. |
|||||||||||||||||
|
|
Before attempting any optimizations first you need to be able to profile, get FireBug for Firefox. Then you can run some analysis that will tell you exactly what to do using YSlow. Fundamental things that you should do are listed here. |
|||
|
|
|
definitely want to look at caching, as round trips to DB are expensive. also, minify JS |
|||
|
|
|
Here are a few "best practice" things:
|
||||
|
|
|
The first optimisation is: Decide if it is slow, and if not, don't bother. This is trickier than it sounds, because it's not like testing a desktop app or game. A game is slow if when you play it on the target hardware, the frame rate is too low. This is very easy to measure. A web site is trickier, because you, as the developer, are probably using a local test system with a very fast network. Even when you use your staging / system test servers, you're probably still on the local network. Even your production servers are in all likelihood, on the same continent. The same is possibly not true for quite a lot of your users. Therefore the options which exist are:
The latter is not recommended. An option which the holier-than-thou Yahoo Web Sites performance book (which yes, is a book you can buy) doesn't mention a lot is HTTPS. Most web applications which handle important data run mostly or entirely over HTTPS, which changes the rules of the game rather a lot. Remember to do all testing with it enabled. |
|||
|
|
|
install firebug and pagespeed plugin follows all the pagespeed directives (until possible) and be happy http://code.google.com/intl/it/speed/page-speed/ anyway the most importante optimization in my experience is to reduce the number of HTTP requests to a minimum... |
|||
|
|
|
The simple options I can think of are:
|
||||
|
|
|
There are two sides you can care about, when optimizing :
Note : we, as developpers, often think about optimizing the server-side first... Which in most cases only represents less than 10% percent of the loading-time of the page !
For more informations, you can take a look to the answer I gave some time ago to this question : Optimizing Kohana-based Websites for Speed and Scalability
About that, there is a lot of great stuff on Yahoo's Exceptional Performance : they've released lots of good pratices and tools, such as yslow. |
||||
|
|
|
We recently did this on our web site. Here we outlined nine techniques that seemed to have the highest impact with the least difficulty: http://mentormate.com/blog/easy-ways-speed-website-load-time/ |
|||
|
|
|
To reduce network traffic, you can minify static files, such as CSS and Javascript, and use gzip compression on generated content. You can also try using tools such as optipng to reduce the size of images. However, the first step to take is to actually analyse what's taking all of the time -- whether it's sending the bits over the network, or actually generate the content to send. There's no point making your CSS files 10% smaller if it takes a minute to generate each HTML page. |
|||
|
|
|
i wrote some things about, see: |
|||
|
|
|
As already mentioned, you can use Yslow or PageSpeed firefox extension. But you can also use GTmetrix, an online service scanning your page with both tools. Features I like / use:
(by the way, i'm not related to gtmetrix !) |
|||
|
|
|
Load balancing would help to reduce the loading time immense. |
|||||
|