I am in the process of speeding the perceived load time of a website specifically aimed at the mobile platforms (iPhone primarily, Android secondarily, who cares about the rest...) I have already tried several general techniques for speeding load times for normal websites but I was wondering if anyone had specific pointers for the mobile web performance.

I am already bundling scripts, spriting images, lazy loading as much as possible, putting fixed sizes on things, linking css in the head etc. I want insights specifically for mobile.

For example I have heard that the iPhone will only cache files less than 25k so sometimes splitting a script/file into 25k chunks may give an overall boost since now they can be cached even though it caused additional connections to be made. Any other insights like this would be much appreciated.

Also, does anyone know of a good tool to test the load times in iphone?)

link|improve this question

+1 excellent question. Looking forward to seeing some interesting answers with more (ideally verified) tips and tricks from battle-scarred mobile veterans... – millhouse Dec 17 '11 at 0:31
"who cares about the rest..." is a prelude for disasters – CAFxX Dec 17 '11 at 17:31
1  
also, you didn't mention at all correct caching, compression and the separate-domain-to-serve-static-content thingy (among others) – CAFxX Dec 17 '11 at 17:37
Thanks... can you elaborate a little? – hackartist Dec 17 '11 at 19:09
feedback

2 Answers

up vote 1 down vote accepted

Ok, here's some measuring tools for you...

Steve Souders' mobile bookmarklet - http://stevesouders.com/mobileperf/mobileperfbkm.php (a bit limited on he timing front but has lots of interesting other features)

Stoyan Stefanov's iOS app for exploring page load - http://calendar.perfplanet.com/2011/i-see-http/ (very new, so not sure about it's limitations)

3P Mobile have their own iOS browser in beta that produces waterfalls - Android version was very good.

As far as optimisation goes...

The mobile cache may be small but you still have access to localstorage i.e. include CSS/js inline and extract and save to local storage - Bing mobile does this.

DataURIs are another way of reducing requests but of course the user loses the option to turn off images

Ensure you make good use of keep-alive and connection pipelining - splitting between multiple hostnames can get in the way of these so be careful if you do this.

Caching varies wildly between different phones an OS versions saw an article on it recently will see if I can find it again.

link|improve this answer
Thank you very much this is what I was looking for. – hackartist Dec 17 '11 at 19:11
feedback

Yahoo! has a nice page about how to squeeze the most performance out of your site.

They also have a Firefox plugin (YSlow) that automatically checks whether your site follows them and suggest improvements. That plugin covers also performance problems that may affect mobile browsers.

link|improve this answer
Do they have a version I can actually install on the iphone though? Thanks for the Yahoo link... I had actually already checked that page out when I was researching before but it is a good place to start. – hackartist Dec 17 '11 at 0:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.