Thursday, April 30th, 2009
While making WidgetCity, I had to use various measures to speed up the code. In this post, I'll show you the tricks I learned - some of which I haven't seen mentioned anywhere else before.
A lot of performance optimization tips for JavaScript code involve things that you more typically see ...
Posted in Programming | 14 Comments »
Monday, March 23rd, 2009
A common reason to use Ajax in a website is to make it feel faster, so you usually want Ajax requests be processed as quickly as possible.
While there are many ways to speed up Zend Framework based applications, there are still some things like routing and dispatching which still add ...
Posted in Programming | 15 Comments »
Saturday, January 17th, 2009
I decided to try profiling my quiz application to see if I could speed it up. Not surprisingly, biggest performance penalties came from loading classes and Doctrine's ORM magic.
Here are some findings on how to improve performance.
Posted in Programming | 10 Comments »
Monday, March 24th, 2008
Yahoo has been researching various different techniques for improving website performance. There are a lot of obvious ones, such as making sure images are optimized, JavaScript/CSS is minified and so on.
There are also a couple of less known tricks, such as putting JavaScript as the last in the document, and ...
Posted in general | 8 Comments »