Hi, i was wondering what the best way is to implement a tag system, like the one used in SO. I was thinking of this but i can't come up with a good scalable solution.
The things i was thinking was is the basic 3 table solution. Having the tags table, the 'articles' tables, and a tag_to_articles table.
Is this still the best solution to this problem, or are there alternatives. Using this method the table would get extremely large in time, and for searching this is not too well i assume. On the other hand it is not that important that the query executes fast.
Thank you.