Website Performance Tutorials
code.google.com
Website Performance Tutorials
1–10 of 15 posts
Re: Website Performance Tutorials
#2Re: Website Performance Tutorials
#3I've also found Yahoo UI and performance section a great resource too. For better or worse, Yahoo! apps tend to be heavier on the design and graphics side so they have some good practices in place.
Re: Website Performance Tutorials
#4Good stuff, this must be a relatively new section. I've also found Yahoo UI and performance section a great resource too. For better or worse, Yahoo! apps tend to be heavier on the design and graphics side so they have some good practices in place. http://developer.yahoo.com/yui/
Re: Website Performance Tutorials
#5Can someone post performance tips for Python? Either links or just suggestions. I've been coding in Python for a couple weeks and I'm not sure about what tools I have at my disposal for identifying bottlenecks and subsequently how to address those bottlenecks.
Re: Website Performance Tutorials
#6Re: Website Performance Tutorials
#7Re: Website Performance Tutorials
#8Can someone post performance tips for Python? Either links or just suggestions. I've been coding in Python for a couple weeks and I'm not sure about what tools I have at my disposal for identifying bottlenecks and subsequently how to address those bottlenecks.
(It is also a whole lot of black magic compared to front-end optimization. See any of the presentations by the YSlow guys -- google [high performance web sites] and look for the slides or videos. They give simple, tested, repeatable "do this and it will work" best practices. Backend optimization, on the other hand, relies far too much on handwavy lore and near-useless-or-actually-harmful micro-optimizations. For example, "StringBuffers are sooooooo much faster than String concatenation!")
Re: Website Performance Tutorials
#9Can someone post performance tips for Python? Either links or just suggestions. I've been coding in Python for a couple weeks and I'm not sure about what tools I have at my disposal for identifying bottlenecks and subsequently how to address those bottlenecks.
My suggestion: your bottleneck is highly unlikely to be Python. Most web applications get to wait on DB access, network latency, and then browser rendering. All the backend optimization in the world just gets you to these bottlenecks faster. (It is also a whole lot of black magic compared to front-end optimization. See any of the presentations by the YSlow guys -- google [high performance web sites] and look for the…
I second that. My experience is first look into the DB time and second browser rendering. I have thought Python was the cause for slowness many times and each time it again proved to be DB time. Also, don't run multiple selects to the database for a set of records, make it one select.
Re: Website Performance Tutorials
#10I would expect something a lot more from google. All these ideas are way too elementary and some are just misguided. Advice like "crop your image"...come on. The misguided ones are things like "use single quotes instead of double quotes when printing in php since one does not look for variables in the string text". The is just misguided and is probably the last thing your should worry about. This is orders of magnitu…