What is the best Document-oriented database? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T23:02:24Z http://stackoverflow.com/feeds/question/80490 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/80490/what-is-the-best-document-oriented-database 0 What is the best Document-oriented database? Steve 2008-09-17T06:17:47Z 2009-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#80497 2 Answer by jwanagel for What is the best Document-oriented database? jwanagel 2008-09-17T06:18:45Z 2008-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#80500 4 Answer by AlexDuggleby for What is the best Document-oriented database? AlexDuggleby 2008-09-17T06:19:51Z 2008-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#80535 1 Answer by Ron Tuffin for What is the best Document-oriented database? Ron Tuffin 2008-09-17T06:27:40Z 2008-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#80539 2 Answer by Dan Harper - Leopard CRM for What is the best Document-oriented database? Dan Harper - Leopard CRM 2008-09-17T06:28:10Z 2008-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#80555 1 Answer by Jason Morrison for What is the best Document-oriented database? Jason Morrison 2008-09-17T06:32:21Z 2008-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#80643 0 Answer by Stephan for What is the best Document-oriented database? Stephan 2008-09-17T06:55:51Z 2008-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 -2 Answer by mortenbpost for What is the best Document-oriented database? mortenbpost 2008-09-20T09:44:35Z 2008-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#1341286 0 Answer by Mike Hillwig for What is the best Document-oriented database? Mike Hillwig 2009-08-27T13:56:22Z 2009-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#1705431 0 Answer by Andrew Brew for What is the best Document-oriented database? Andrew Brew 2009-11-10T03:14:33Z 2009-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#1705455 0 Answer by Andy Dent for What is the best Document-oriented database? Andy Dent 2009-11-10T03:25:50Z 2009-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>