vote up 1 vote down star

Is there any way to have multiple tag search implemented in CouchDB? I have documents (posts) each with multiple tags. I need to find posts that have been tagged with an arbitrary set of tags. How do I do it? I could of course do it with multiple calls to a view which gives me the documents for a tag and then sort it out in my app but I wanted to know if there was a way to achieve the same in the CouchDB view land.

flag

50% accept rate

3 Answers

vote up 0 vote down

In the more recent versions of CouchDB, you can POST to a view with a JSON document called keys, which allows for multi-key lookup. The structure would look something like this:

{"keys": ["first_tag", "second_tag", "third_tag"]}

This could be POSTed to a view that you have that is emitting tags for its respective keys.

This and other querying options are documented here.

link|flag
I am not sure if this would be the best way. Suppose I have a list of 15 distinct tags that might be applied in any different combination and order then I would have 15^14 key combinations. Generating and indexing all these queries would by itself be a daunting task. PS. Math is not my strongest area. Correct me if I am wrong. – Vagmi Mudumbai Sep 28 at 18:16
vote up 0 vote down

One way of doing is as explained above by Ryan Duffield. Though it solves some of the queries but it will become unmanageable over the period of time. Otherway is to use Full Text Search which is not currently supported by CouchDB but there is an external plugin using Lucene. more here http://wiki.apache.org/couchdb/Full_text_search.

link|flag
vote up 0 vote down check

Actually tagging seems to be a very relational problem and does not play well with CouchDB's design. So I have decided to have one small database for tags on mysql and have the actual documents stored at CouchDB. This lets me get the best of both worlds. Although this technique has problems related to synchronization, searching on tags is an efficient operation on sql and the content is not too much to worry about replication or sharding. Thanks for all your answers.

link|flag

Your Answer

Get an OpenID
or

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