I have noticed that Facebook's XFBML like button adds a timer that triggers every 100ms. Does anyone knows why? Also, is it possible to remove this timer?

I think this is a bug because 100ms means it fired very often. Also, if you have 10 like buttons you will have 10 triggers fired every 100ms, 100 triggers per second. That's a lot and can causes some performance problems.

You can check this in Chrome by opening: http://mashable.com/ (they have a lot of like buttons) Then just open developers tools and from timeline tab do a record. You will see a lot of Timer fired (see snapshot http://cl.ly/272h3V1u1t3w0f1R4625).

link|improve this question
First time I see this bug. That thing should not be a problem using iframe like button. Even if it can make trouble, I don't think having 10 likes in a page could be good. And BTW performance depends on what does the process do, not the timing. – Tom Roggero Dec 9 '11 at 5:58
feedback

1 Answer

Looks to me as if each like button sets up it's own polling to keep updated instead of setting up a small pubsub architecture where it only has one timer polling and alerting any subscribers.

So I'd simply discard this as a bad implementation on facebooks part and take it up with them to rewrite it.

Pubsub is really not that difficult to implement. Just take a look at this implementation: https://github.com/daniellmb/MinPubSub

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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