Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've heard of a few ways to implement tagging; using a mapping table between TagID and ItemID (makes sense to me, but does it scale?), adding a fixed number of possible TagID columns to ItemID (seems like a bad idea), Keeping tags in a text column that's comma separated (sounds crazy but could work). I've even heard someone recommend a sparse matrix, but then how do the tag names grow gracefully?

Am I missing a best practice for tags?

share|improve this question
7  
Okay this is question #20856, the (almost) same question is #48475 asked at least two weeks after this question was asked. – dlamblin Oct 7 '08 at 16:02
3  
Another interesting question is "How SO implements tags?" – Mostafa Nov 28 '11 at 19:19

5 Answers

up vote 148 down vote accepted

Three tables (one for storing all items, one for all tags, and one for the relation between the two), properly indexed, with foreign keys set running on a proper database, should work well and scale properly.

Table: Item
Columns: ItemID, Title, Content

Table: Tag
Columns: TagID, Title

Table: ItemTag
Columns: ItemID, TagID
share|improve this answer
5  
I don't think this can be upvoted enough. This is clearly the best way to do it. – BobbyShaftoe Dec 23 '08 at 2:43
50  
Clearly? Where is the evidence that this is clearly the best way to do this (except for the fact that it is Normalized - also, remember normalization is fast inserts, slow selects). – Bryan Rehbein Dec 23 '08 at 22:45
16  
This is known as the “Toxi” solution, you can find additional information about it here : pui.ch/phred/archives/2005/04/tags-database-schemas.html – The Pixel Developer Jun 28 '09 at 12:41
6  
One thing not shown here is hierarchal "tags" or categories in the Tag table. This is commonly needed on sites that have categories and subcategories but need the flexibility of tagging. For example, recipe sites, auto parts sites, business directories, etc. These types of data don't usually fit into only one single category so tagging is the answer but you need to use something like the Nested Set Model or the Adjacency List Model in your Tag table. – HK1 Jan 21 '11 at 20:50
2  
I agrree with HK1 is it possible with above structure + Table : TagGroup Columns : TagGropuId, Title Table: Tag Columns: TagID, Title , TagGroupId – Thunder Feb 11 '11 at 8:35
show 2 more comments

If you are using a database that supports map-reduce, like couchdb, storing tags in a plain text field or list field is indeed the best way. Example:

tagcloud: {
  map: function(doc){ 
    for(tag in doc.tags){ 
      emit(doc.tags[tag],1) 
    }
  }
  reduce: function(keys,values){
    return values.length
  }
}

Running this with group=true will group the results by tag name, and even return a count of the number of times that tag was encountered. It's very similar to counting the occurrences of a word in text.

share|improve this answer
2  
+1 Nice to see some NoSQL implementations also. – Xeoncross Mar 18 '11 at 16:24
@NickRetallack The link is not working. If you could, please update this answer. – xralf Feb 18 '12 at 10:21
Ok I replaced the link with one to archive.org – Nick Retallack Feb 20 '12 at 4:47

Use a single formatted text column[1] for storing the tags and use a capable full text search engine to index this. Else you will run into scaling problems when trying to implement boolean queries.

If you need details about the tags you have, you can either keep track of it in a incrementally maintained table or run a batch job to extract the information.

[1] Some RDBMS even provide a native array type which might be even better suited for storage by not needing a parsing step, but might cause problems with the full text search.

share|improve this answer
Are you aware of any full-text search engine that doesn't find variations on a word? For example, searching for book returns books? Also, what do you do about tags like "c++"? SQL Server, for example, would strip the plus signs in the index. Thanks. – Jonathan Wood Jan 18 '11 at 1:41
Try Sphinx - sphinxsearch.com – oyatek Feb 9 '11 at 13:45

I've always kept the tags in a separate table and then had a mapping table. Of course I've never done anything on a really large scale either.

Having a "tags" table and a map table makes it pretty trivial to generate tag clouds & such since you can easily put together SQL to get a list of tags with counts of how often each tag is used.

share|improve this answer

Agreed with Yakkov or you'll next question will be this.
http://stackoverflow.com/questions/20484/use-a-like-clause-in-part-of-an-inner-join

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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