How do you recommend implementing tags or tagging - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T17:20:40Zhttp://stackoverflow.com/feeds/question/20856http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/20856/how-do-you-recommend-implementing-tags-or-tagging36How do you recommend implementing tags or taggingdlamblin2008-08-21T19:18:05Z2008-09-07T19:41:11Z
<p>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?</p>
<p>Am I missing a best practice for tags?</p>
http://stackoverflow.com/questions/20856/how-do-you-recommend-implementing-tags-or-tagging/20871#2087149Answer by Yaakov Ellis for How do you recommend implementing tags or taggingYaakov Ellis2008-08-21T19:22:44Z2008-08-21T19:22:44Z<p>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. </p>
<pre><code>Table: Item
Columns: ItemID, Title, Content
Table: Tag
Columns: TagID, Title
Table: ItemTag
Columns: ItemID, TagID
</code></pre>
http://stackoverflow.com/questions/20856/how-do-you-recommend-implementing-tags-or-tagging/20873#208731Answer by Mark Biek for How do you recommend implementing tags or taggingMark Biek2008-08-21T19:23:32Z2008-08-21T19:23:32Z<p>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.</p>
<p>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.</p>
http://stackoverflow.com/questions/20856/how-do-you-recommend-implementing-tags-or-tagging/20875#208753Answer by jms for How do you recommend implementing tags or taggingjms2008-08-21T19:25:11Z2008-08-21T19:25:11Z<p>Agreed with Yakkov or you'll next question will be this.<br />
<a href="http://beta.stackoverflow.com/questions/20484/use-a-like-clause-in-part-of-an-inner-join" rel="nofollow">http://beta.stackoverflow.com/questions/20484/use-a-like-clause-in-part-of-an-inner-join</a></p>
http://stackoverflow.com/questions/20856/how-do-you-recommend-implementing-tags-or-tagging/48348#483483Answer by David Schmitt for How do you recommend implementing tags or taggingDavid Schmitt2008-09-07T11:47:34Z2008-09-07T11:47:34Z<p>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.</p>
<p>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.</p>
<p>[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.</p>
http://stackoverflow.com/questions/20856/how-do-you-recommend-implementing-tags-or-tagging/48714#487147Answer by Nick Retallack for How do you recommend implementing tags or taggingNick Retallack2008-09-07T19:41:11Z2008-09-07T19:41:11Z<p>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:</p>
<pre><code>tagcloud: {
map: function(doc){
for(tag in doc.tags){
emit(doc.tags[tag],1)
}
}
reduce: function(keys,values){
return values.length
}
}
</code></pre>
<p>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 <a href="http://jchris.mfdz.com/posts/107" rel="nofollow">counting the occurrences of a word in text</a>.</p>