vote up 0 vote down star
4

How do websites like Digg, Del.icio.us, and StackOverflow implement tagging?

I know this other question has an accepted answer of a many-to-many relation with a cross ref table. But how do the "big boys" do it? The same way? How is it scaling?

flag

68% accept rate
I think your reference answers this quite well. The accepted answer also says that it will scale. Why don't you elaborate on why you think it won't scale, or better yet test it yourself. – flodin Feb 15 at 19:49
@flodin - the accepted answer says it "should" scale, without providing any evidence or metrics. – Rex M Feb 15 at 19:50

2 Answers

vote up 6 vote down

Here is the oft-quoted article which breaks down tagging schemas by real performance metrics: http://www.pui.ch/phred/archives/2005/06/tagsystems-performance-tests.html

The author notes that the founder of delicious explains using an RDBMS for tagging simply does not scale to many millions of items under load. An alternative like Lucene may fit better in such a case.

link|flag
+1. Thanks. I was going to include a link to this article in my question but couldn't remember how to find it. So out of these different strategies- Any idea on what StackOverflow or Digg use? – B. Tyndall Feb 16 at 2:24
@Tyndall SO uses SQL, but SO does not have many millions (tens or hundreds) of items to be tagged in multiple dimensions like Digg or Delicious might. – Rex M Jun 25 at 14:19
vote up 0 vote down

I am sure that the additional JOIN queries would be too expensive in a very large system.

The tags are either stored non-normalised in the main table, or there may be a separate tag table which has a row for each tagged item.

link|flag

Your Answer

Get an OpenID
or

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