vote up 6 vote down star
6

What are the other types of database systems out there. I've recently came across couchDB that handles data in a non relational way. It got me thinking about what other models are other people is using.

So, I want to know what other types of data model is out there. (I'm not looking for any specifics, just want to look at how other people are handling data storage, my interest are purely academic)

The ones I already know are:

  1. RDBMS (mysql,postgres etc..)
  2. Document based approach (couchDB, lotus notes)
  3. Key/value pair (BerkeleyDB)
flag

47% accept rate

11 Answers

vote up 7 vote down

db4o

Quote from the "about" page:

db4o is the open source object database that enables Java and .NET developers to store and retrieve any application object with only one line of code, eliminating the need to predefine or maintain a separate, rigid data model.

link|flag
vote up 3 vote down

Older non-relational databases:

Network Database

Hierarchical Database

Both mostly went out of style when relational became feasible.

link|flag
vote up 1 vote down

Isn't Amazon's SimpleDB non-relational?

link|flag
vote up 1 vote down

db4o, as mentioned by Eric, is an Object-Oriented database management system (OODBMS).

link|flag
vote up 1 vote down

There's object-based databases(Gemstore, for example). Google's Big-Table and Amason's Simple Storage I am not sure how you would categorize, but both are map-reduce based.

link|flag
BigTable is a column-oriented store. – Till Oct 10 '08 at 11:20
vote up 1 vote down

Column-oriented databases are also a bit of a different animal. Many of them do support standard relational database SQL though. These are generally used for data warehouse type applications.

link|flag
vote up 1 vote down

Semantic Web is also a non-relational data storage paradigm. There are no relations, all metadata is stored in the same way as data, and every entity has potentially its own unique set of attributes. Open-source projects that implement RDF, a Semantic Web standard, include Jena and Sesame.

link|flag
vote up 0 vote down

A non-relational document oriented database we have been looking at is Apache CouchDB.

Apache CouchDB is a distributed, fault-tolerant and schema-free document-oriented database accessible via a RESTful HTTP/JSON API. Among other features, it provides robust, incremental replication with bi-directional conflict detection and resolution, and is queryable and indexable using a table-oriented view engine with JavaScript acting as the default view definition language.

Our interest was in providing a distributed access user preferences store that would be immune to shape changes to which we could serialize preference objects from Java and access those just as easily with Javascript from a XULRunner based client application.

link|flag
vote up 0 vote down

4. Navigational. Includes Tree/Hierarchy and Graph/Network.

File systems, the semantic web, XML, Object databases, CODASYL, and many others all fit into this category.

Those 4 are pretty much it.

link|flag
vote up 0 vote down

There is also what is referred to as an "inverted index" or "inverted list" database. Software AG's Adabas product would be an example. As with hierachical, these databases continue to be used in large corporate or university environments because of legacy considerations or due to a performance advantage in certain situations (typically high-end transactional applications).

link|flag
vote up 0 vote down

There are BASE systems (Basically Available, Soft State, Eventually consistent) and they work well with simple data models holding vast volumes of data. Google's BigTable, Dojo's Persevere, Amazon's Dynamo, Facebook's Cassandra are some examples.

See LINK

link|flag

Your Answer

Get an OpenID
or
never shown

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