active questions tagged document-oriented-db - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T20:34:35Zhttp://stackoverflow.com/feeds/tag/document-oriented-dbhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1736840/what-is-the-benefit-of-using-a-document-oriented-dbms2What is the benefit of using a "document-oriented DBMS"?Jonathan Allen2009-11-15T07:01:18Z2009-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-relationally11How to stop thinking "relationally"Matt Grande2009-06-25T13:12:42Z2009-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 & 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-couchdb3How to build "Tagging" support using CouchDB? Senmiao Liu2008-10-17T04:57:22Z2008-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 > 0) {
for (var tag in doc.tags) {
if (doc.tags[tag] == "%s") {
emit(doc.published, doc)
}
}
}
};
''' % tag
</code></pre>