hot questions tagged document-oriented-db - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T08:37:06Z http://stackoverflow.com/feeds/tag?tagnames=document-oriented-db&sort=hot http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1736840/what-is-the-benefit-of-using-a-document-oriented-dbms 2 What is the benefit of using a "document-oriented DBMS"? Jonathan Allen 2009-11-15T07:01:18Z 2009-11-15T08:55:37Z <p>I must be missing something, because everything I've seen so far suggests that it isn't any more interesting than a single table for storing blobs and a second table for tags that apply to it.</p> <p>Now I certainly can see some benefit to that from a design pattern, but why would I want to use a "document-oriented DBMS" instead of just building it using a traditional database like SQL Server, Oracle, or Postgres? </p> http://stackoverflow.com/questions/1043830/how-to-stop-thinking-relationally 11 How to stop thinking "relationally" Matt Grande 2009-06-25T13:12:42Z 2009-10-16T21:16:06Z <p>At work, we recently started a project using CouchDB (a document-oriented database). I've been having a hard time un-learning all of my relational db knowledge.</p> <p>I was wondering how some of you overcame this obstacle? How did you stop thinking relationally and start think documentally (I apologise for making up that word).</p> <p>Any suggestions? Helpful hints?</p> <p><em>Edit</em>: If it makes any difference, we're using Ruby &amp; CouchPotato to connect to the database.</p> <p><em>Edit 2</em>: SO was hassling me to accept an answer. I chose the one that helped me learn the most, I think. However, there's no real "correct" answer, I suppose.</p> 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>