vote up 0 vote down star

We all know RDBMS, but what about Document-oriented databases?

Consider the things that you leave an RDBMS to do, like indexing, complex query structure, mathematical functions, storage, transactions etc...

flag
'What is the best X' is almost always subjective, unless you constrain the question – Peter Hilton Sep 17 '08 at 7:16

10 Answers

vote up 1 vote down check

Do you mean something like a document-oriented database, or maybe a document management system? Many of these systems are built on top of RDBMS's, in a way they're just specialized database apps like anything else.

link|flag
I guess I mean document-oriented database. Taking a different view to storing data, not in tables or rows, but in flexible documents. – Steve Sep 17 '08 at 6:49
vote up 4 vote down

I can't say it's the best, but it is very interesting: Apache CouchDB: http://incubator.apache.org/couchdb/

link|flag
vote up 2 vote down

My first answer, the file system, but you really need to update your question with more context.

link|flag
I have added more requirements about what to look for in a Document Database. – Steve Sep 17 '08 at 6:29
Like jwanagel said, it's called the File System. As to your additional requirements, that's called "Desktop Search" or "Google Desktop" depending on your point of view. – Chris Lively Nov 10 at 3:17
vote up 2 vote down

Not that it's a Document Database as such, but Daisy 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.

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.

link|flag
vote up 1 vote down

Used to use Documentum (www.documentum.com) at a large insurance company I used to work for. Java based (well the API we used was Java).

Can't imagine it is cheep though.

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

Even though it has fallen out of popularity, Lotus Notes/Domino was designed for storage of semi-structured data.

link|flag
vote up 0 vote down

Best = most powerful/flexible/extensible/scalable/secure?

Notes. It really hasn't "fallen out of popularity". It just tends to be under most people's radar.

link|flag
vote up 0 vote down

Maybe you should check out XML Databases such as eXist which has XQuery structured querying and enhances it with Lucene text indexing.

link|flag
vote up -2 vote down

I'd mention SharePoint for enterprise levels.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.