Idealism is what precedes experience; cynicism is what follows...

Showing posts with label Performance Optimization. Show all posts
Showing posts with label Performance Optimization. Show all posts

Tuesday, June 17, 2008

MyHome Benchmarks with YSlow

YSlow analyzes web pages and tells you why they're slow based on the rules for high performance web sites. YSlow is a Firefox add-on integrated with the Firebug web development tool and as such is very easy to handle.

I have created a small benchmark test with MyHome against HelloGroup's and Elsparefonden's public websites.

Obviously we still have some optimization to do, but its also obvious that we are not that far from reaching an acceptable minimum for the initial load sequence.



Checkout YSlow here...
http://developer.yahoo.com/yslow/

Thursday, October 25, 2007

Adobe Flex : Improving startup performance

Watch what you do at startup !

Don’t call setStyle() if you can avoid it, it’s one of the most expensive calls in the framework since it can trigger reloading styles in every component on the display list. If you have to call setStyle(), do it in the INITIALIZE event handler instead of the CREATION_COMPLETE handler. Use deferred instantiation when possible (leave creationPolicy=”auto”). Avoid unneccessary nesting of containers.

Adobe Flex : Improving startup performance

Watch what you do at startup !

Don’t call setStyle() if you can avoid it, it’s one of the most expensive calls in the framework since it can trigger reloading styles in every component on the display list. If you have to call setStyle(), do it in the INITIALIZE event handler instead of the CREATION_COMPLETE handler. Use deferred instantiation when possible (leave creationPolicy=”auto”). Avoid unneccessary nesting of containers.

My Network