show/hide this revision's text 4 added 15 characters in body

There are various schemas which are effective, each with their own performance implications for the common queries you'll need as the number of tagged items grows:

Personally, I like having a tag table and a link table which associates tags with items, as it's denormalized (no duplication of tag names) and I can store additional information in the link table (such as when the item was tagged) when necessary.

You can also add some denormalised data if you're feeling frisky and want simple selects at the cost of the additional data maintenance required by storing usage counts in the tag table, or storing tag names which were used in the item table itself to avoid hitting the link table and tag table for each item, which is useful for displaying multiple items with all their tags and for simple tag versioning... if you're into that sort of thing ;)

show/hide this revision's text 3 added 176 characters in body

There are various schemas which are effective, each with their own performance implications for the common queries you'll need as the number of tagged items grows:

Personally, I like having a tag table and a link table which associates tags with items, as it's denormalized (no duplication of tag names) and I can store additional information in the link table (such as when the item was tagged) when necessary.

You can also add some denormalised data if you're feeling frisky and want simple selects at the cost of the additional data maintenance required , such as by storing usage counts in the tag table, or storing tag names which were used in the item table itself to avoid hitting the tag table for each item, which is useful for displaying multiple items with all their tags and for simple tag versioning... if you're into that sort of thing ;)

show/hide this revision's text 2 added 256 characters in body

There are various schemas which are effective, each with their own performance implications for the common queries you'll need as the number of tagged items grows:

Personally, I like having a tag table and a link table which associates tags with items, as it's denormalized (no duplication of tag names) and I can store additional information in the link table (such as when the item was tagged) when necessary.

You can also add some denormalised data if you're feeling frisky and want simple selects at the cost of the additional data maintenance required, such as storing usage counts in the tag table or storing tag names which were used in the item table itself.

show/hide this revision's text 1