vote up 2 vote down star

In the context of having a list of user that has an icon next to their name, is it better to cache all images of Gravatar for few minutes or it's fine to directly display the image from Gravatar? The list is around 200 users on every pages.

flag

3 Answers

vote up 5 vote down check

Let Gravatar do the caching. Most likely the a local isp, if not browser, would have them cached further downstream already.

Not sure how you were going to hold them on your server, but it's better web performance to load from multiple domains anyway, allows more parallel downloads.

In fact, if you cached them yourself you might do a lot more damage than good, as it's more likely someone is going to have the popular gravatars cached from a visit to some other site, SO for e.g.

link|flag
2  
Maybe it's different in your location, but ISP's rarely cache afaik. – Evert Sep 14 at 15:27
+1 for your answer. I know that Gravatar could do the caching but if the list is big, I was wondering if it's effective to do that much request. – Daok Sep 14 at 15:46
Multiple domains = more DNS look up. each DNS look up ranges from 100 to 300 ms, and this takes up loading time. – thephpdeveloper Sep 14 at 15:58
@Evert i believe they do, as would proxies within a corporation. – dove Sep 14 at 16:09
@Mauris what you say is correct, though i think that time would only be true for the first lookup and not as long as you suggest. I just ran stackoverflow.com/users with yslow in firebug and it took 2.6 seconds, DNS lookup took < 1ms by the looks of it. I'm not ruling out this being different under different test conditions. It's not clear, without further testing, whether the gains made by parallel downloads outweigh this. It's one of the reasons SO server static content off a different domain now (though it being cookieless is the main reason) – dove Sep 14 at 16:15
show 2 more comments
vote up 1 vote down

Linking to them will be simpler and it will allow Gravatar to figure out how the caching should work. (e.g.: how long the browser cache should be?)

link|flag
+1, yes of course it would be simpler (for me) but the problem is the amount of user that is in the list, this put a lot of work on resource located somewhere else. This might slow down the page a lot? – Daok Sep 14 at 15:48
vote up 2 vote down

The avatars are already cached in the browser cache so don't try to implement your own caching mechanism. But is it really necessary to display 200 avatar images on each page?

link|flag
Well, kinda like SO with the USER page that has hundred of gravatar image isn't? – Daok Sep 14 at 15:45
+1 for your interest in the question. I might display only the top 10 of the list... but my plan is to display for the whole list. – Daok Sep 14 at 15:47

Your Answer

Get an OpenID
or

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