I'm creating a generic tagging system, where "tagging occurrences" are stored as docs outside of individual models. When a user tags a document, one of these documents is created.
So lets say i have an Event, tagged with "jazz", "music", "adult". On the event page, i want to allow the user to find related events (documents) based on those tags. Essentially, find all other
documents which have those tags in common.
So suppose i have Events (concerts in this example):
Earl Klugh - "jazz", "music", "adult"
Mulgrew Miller - "jazz", "music", "classic", "adult"
Poncho Sanchez - "jazz", "latin"
If i'm on the Earl Klugh page, and i click on "Related", i should find Mulgrew Miller, since the tags for Mulgrew Miller are a superset.
On Saturday, June 30, 2012 1:03:15 PM UTC-4, Oren Eini wrote:
Clayton,
Let us leave aside the current model.
What is it that you are trying to _do_?