vote up 0 vote down star

Duplicate: How do you recommend implementing tags or tagging

What's a efficient, fast and elegant architecture for a tagging system (such as posts or photos). For example, you have a site like StackOverflow and each item has a couple of tags. What's the best way to keep track of these, and make them searchable. Scalability is important as well.


Have a 'tags' column per each item. So in the database for that item's row you have string with all the tags "tag1 tag2 tag3 keyword anothertag etc". Then you can allow fulltext search index on that column.


Have a tags table. Where it maps "tag":"item_id". This would make searching faster... you can search for the tag=keyowrd and get a list of all the item_ids.


Both of these seem like the obvious solutions, but for very very large data sets, seems like a pretty inefficient method. Any thoughts or other ways to implement a tagging system?

flag

75% accept rate

closed as exact duplicate by Chad Birch, Tom Ritter, Andy White, Rob, Mitchel Sellers Apr 30 at 21:53

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question.

1 Answer

vote up 0 vote down check

this would be helpful to read http://www.pui.ch/phred/archives/2005/04/tags-database-schemas.html

link|flag

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