vote up 1 vote down star

What algorithm does twitter use to determine the 10 topics that you can see at search.twitter.com? I would like to implement that algorithm and I would also like to show the 50 most popular topics (instead of 10). Can you describe the most efficient algorithm?

Thanks!

(Twitters API can be found at- http://apiwiki.twitter.com/REST%20API%20Documentation)

Also, I would like to be able to implement the algorithm by searching through the public timeline- http://twitter.com/statuses/public_timeline.rss

flag

4 Answers

vote up 4 vote down

I'd assume Twitter tracks searches and calculates the most searched in the last 60 mins prior to your search. As Martin said, Twitter is not oepn-source so we're not going to eb able tot ell you what the exact algorithm is.

link|flag
vote up 0 vote down

we cant tell you the exact algorithm, as twitter is closed source. We don't have access to the code... so at best, you'd get a guess

link|flag
vote up 0 vote down

I guess I used the wrong words. I edited the question for clarity.

link|flag
People answered you already. In a nutshell, you read tweets [from the public timeline] and isolate relevant words (maybe use a stop-word-list) and do appropriate counts. – Till Sep 27 '08 at 15:45
Actually I dont think my questions has been answered until now. I think you gave the best response, but without enough details. – quilby Sep 27 '08 at 18:39
vote up 0 vote down

So what Twitter probably does is it counts the number of mentions of a particular term minus stop words (stop words like : do, me, you, I, not, on etc) So "the cat is out of the bag" and "my dog ate my cat" would mean that cat ,dog and bag would be the terms it extracted (the rest are all stop words) And it then counts 'cat' as 2 references, so 'cat' would be a trending topic in this case.

link|flag

Your Answer

Get an OpenID
or

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