How to build "Tagging" support using CouchDB? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-22T23:10:04Z http://stackoverflow.com/feeds/question/211118 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/211118/how-to-build-tagging-support-using-couchdb 3 How to build "Tagging" support using CouchDB? Senmiao Liu 2008-10-17T04:57:22Z 2008-11-23T06:01:49Z <p>I'm using the following view function to iterate over all items in the database (in order to find a tag), but I think the performance is very poor if the dataset is large. Any other approach?</p> <pre><code>def by_tag(tag): return ''' function(doc) { if (doc.tags.length &gt; 0) { for (var tag in doc.tags) { if (doc.tags[tag] == "%s") { emit(doc.published, doc) } } } }; ''' % tag </code></pre> http://stackoverflow.com/questions/211118/how-to-build-tagging-support-using-couchdb/211144#211144 1 Answer by Paul Davis for How to build "Tagging" support using CouchDB? Paul Davis 2008-10-17T05:15:36Z 2008-10-17T05:15:36Z <p>You are very much on the right track with the view. A list of thoughts though:</p> <p>View generation is incremental. If you're read traffic is greater than you're write traffic, then your views won't cause an issue at all. People that are concerned about this generally shouldn't be. Frame of reference, you should be worried if you're dumping hundreds of records into the view without an update.</p> <p>Emitting an entire document will slow things down. You should only emit what is necessary for use of the view.</p> <p>Not sure what the val == "%s" performance would be, but you shouldn't over think things. If there's a tag array you should emit the tags. Granted if you expect a tags array that will contain non-strings, then ignore this.</p> http://stackoverflow.com/questions/211118/how-to-build-tagging-support-using-couchdb/213138#213138 6 Answer by Bahadır for How to build "Tagging" support using CouchDB? Bahadır 2008-10-17T17:48:37Z 2008-10-17T17:48:37Z <p><em>Disclaimer: I didn't test this and don't know if it can perform better.</em> </p> <p>Create a single perm view:</p> <pre><code>function(doc) { for (var tag in doc.tags) { emit([tag, doc.published], doc) } }; </code></pre> <p>And query with _view/your_view/all?startkey=['your_tag_here']&amp;endkey=['your_tag_here', {}]</p> <p>Resulting JSON structure will be slightly different but you will still get the publish date sorting.</p> http://stackoverflow.com/questions/211118/how-to-build-tagging-support-using-couchdb/216543#216543 2 Answer by Nick Johnson for How to build "Tagging" support using CouchDB? Nick Johnson 2008-10-19T15:34:37Z 2008-10-19T15:34:37Z <p>You can define a single permanent view, as Bahadir suggests. when doing this sort of indexing, though, <em>don't</em> output the doc for each key. Instead, emit([tag, doc.published], null). In current release versions you'd then have to do a separate lookup for each doc, but SVN trunk now has support for specifying "include_docs=True" in the query string and CouchDB will automatically merge the docs into your view for you, without the space overhead.</p> http://stackoverflow.com/questions/211118/how-to-build-tagging-support-using-couchdb/312181#312181 0 Answer by dbr for How to build "Tagging" support using CouchDB? dbr 2008-11-23T05:53:49Z 2008-11-23T06:01:49Z <pre><code># Works on CouchDB 0.8.0 from couchdb import Server # http://code.google.com/p/couchdb-python/ byTag = """ function(doc) { if (doc.type == 'post' &amp;&amp; doc.tags) { doc.tags.forEach(function(tag) { emit(tag, doc); }); } } """ def findPostsByTag(self, tag): server = Server("http://localhost:1234") db = server['my_table'] return [row for row in db.query(byTag, key = tag)] </code></pre> <p>The byTag map function returns the data with each unique tag in the "key", then each post with that tag in <code>value</code>, so when you grab key = "mytag", it will retrieve all posts with the tag "mytag".</p> <p>I've tested it against about 10 entries and it seems to take about 0.0025 seconds per query, not sure how efficient it is with large data sets..</p>