What is the best Document-oriented database? - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T23:02:24Zhttp://stackoverflow.com/feeds/question/80490http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/80490/what-is-the-best-document-oriented-database0What is the best Document-oriented database?Steve2008-09-17T06:17:47Z2009-11-10T03:25:50Z
<p>We all know RDBMS, but what about Document-oriented databases?</p>
<p>Consider the things that you leave an RDBMS to do, like indexing, complex query structure, mathematical functions, storage, transactions etc...</p>
http://stackoverflow.com/questions/80490/what-is-the-best-document-oriented-database/80497#804972Answer by jwanagel for What is the best Document-oriented database?jwanagel2008-09-17T06:18:45Z2008-09-17T06:18:45Z<p>My first answer, the file system, but you really need to update your question with more context.</p>
http://stackoverflow.com/questions/80490/what-is-the-best-document-oriented-database/80500#805004Answer by AlexDuggleby for What is the best Document-oriented database?AlexDuggleby2008-09-17T06:19:51Z2008-09-17T06:19:51Z<p>I can't say it's the best, but it <strong><em>is</em></strong> very interesting: Apache CouchDB: <a href="http://incubator.apache.org/couchdb/" rel="nofollow">http://incubator.apache.org/couchdb/</a></p>
http://stackoverflow.com/questions/80490/what-is-the-best-document-oriented-database/80535#805351Answer by Ron Tuffin for What is the best Document-oriented database?Ron Tuffin2008-09-17T06:27:40Z2008-09-20T09:33:18Z<p>Used to use Documentum (<a href="http://www.documentum.com" rel="nofollow">www.documentum.com</a>) at a large insurance company I used to work for. Java based (well the API we used was Java). </p>
<p>Can't imagine it is cheep though.</p>
http://stackoverflow.com/questions/80490/what-is-the-best-document-oriented-database/80539#805392Answer by Dan Harper - Leopard CRM for What is the best Document-oriented database?Dan Harper - Leopard CRM2008-09-17T06:28:10Z2008-09-17T06:28:10Z<p>Not that it's a Document Database as such, but <a href="http://cocoondev.org/daisy/" rel="nofollow">Daisy</a> works great in this capacity. Mainly because you can author documents within it (like a wiki) you can visually search for existing documents. Also when you upload external files like PDFs, DOCs, etc, it fully indexes them so you can search within their content.</p>
<p>You can also add custom data fields and it has it's own query language that you can use for various tasks. It also has revision control and a security/permissions system.</p>
http://stackoverflow.com/questions/80490/what-is-the-best-document-oriented-database/80555#805551Answer by Jason Morrison for What is the best Document-oriented database?Jason Morrison2008-09-17T06:32:21Z2008-09-17T06:32:21Z<p>Do you mean something like a <a href="http://en.wikipedia.org/wiki/Document-oriented_database" rel="nofollow">document-oriented database</a>, or maybe a <a href="http://en.wikipedia.org/wiki/Document_management_system" rel="nofollow">document management system</a>? Many of these systems are built on top of RDBMS's, in a way they're just specialized database apps like anything else.</p>
http://stackoverflow.com/questions/80490/what-is-the-best-document-oriented-database/80643#806430Answer by Stephan for What is the best Document-oriented database?Stephan2008-09-17T06:55:51Z2008-09-17T06:55:51Z<p>Usually you store all Metainformation of documents in a RDBMS. The documents itself are stored inside a high performance filesystem and are indexed by the database. On top of that you can server your documents via a webserver to 3rd party applications. </p>
http://stackoverflow.com/questions/80490/what-is-the-best-document-oriented-database/107754#107754-2Answer by mortenbpost for What is the best Document-oriented database?mortenbpost2008-09-20T09:44:35Z2008-09-20T09:44:35Z<p>I'd mention SharePoint for enterprise levels.</p>
http://stackoverflow.com/questions/80490/what-is-the-best-document-oriented-database/1341286#13412860Answer by Mike Hillwig for What is the best Document-oriented database?Mike Hillwig2009-08-27T13:56:22Z2009-08-27T13:56:22Z<p>Even though it has fallen out of popularity, Lotus Notes/Domino was designed for storage of semi-structured data. </p>
http://stackoverflow.com/questions/80490/what-is-the-best-document-oriented-database/1705431#17054310Answer by Andrew Brew for What is the best Document-oriented database?Andrew Brew2009-11-10T03:14:33Z2009-11-10T03:14:33Z<p>Best = most powerful/flexible/extensible/scalable/secure?</p>
<p>Notes. It really hasn't "fallen out of popularity". It just tends to be under most people's radar.</p>
http://stackoverflow.com/questions/80490/what-is-the-best-document-oriented-database/1705455#17054550Answer by Andy Dent for What is the best Document-oriented database?Andy Dent2009-11-10T03:25:50Z2009-11-10T03:25:50Z<p>Maybe you should check out XML Databases such as <a href="http://exist.sourceforge.net/" rel="nofollow">eXist</a> which has XQuery structured querying and enhances it with <a href="http://demo.exist-db.org/exist/lucene.xml" rel="nofollow">Lucene</a> text indexing.</p>