A full list of all the new/popular databases and their uses? [closed]
Asked Answered
F

6

19

Recently I have found that there are many new databases popping up all around my radar, and I would like to make a list of what they do and perhaps what their advantages/disadvantages are. I'll seed the list with some names and perhaps someone with more knowledge can chip in with some information about each and how they stack up. I hope this will fast become a comprehensive list of all the available database so that developers can leverage the right one for the job at hand!

Relational Databases:

Established:

New:

Key-value stores:

Document oriented Stores:

Graph DataBases:

  • Neo4j
  • AWS Neptune
  • Sesame
  • AllegroGraph
  • different RDF/triplestores
Figurate answered 13/8, 2009 at 6:18 Comment(6)
Can't forget Oracle, or SQLite.Amperehour
Such a list here would replicate a lot of other similar lists on the net, e.g. en.wikipedia.org/wiki/…Lanner
@Martin: Indeed.... this seems a bit daftPetuntse
you forgot SQL Server in your established listMirella
I think you need two more categories: Bigtable-like systems (HBase, Hypertable ...) and Graph Databases (see my answer below regarding graphdb).Erasmo
A big list sorted by popularity can be found here: db-engines.com/en/rankingHiggledypiggledy
A
4

The SQLite database engine

With library for most popular languages

  • .Net
  • perl
  • Feel free to edit this and add more links
Adjutant answered 13/8, 2009 at 6:18 Comment(2)
Don't forget "cross platform" & "faster than heck"Punke
This is a wiki, you can edit this answer yourself if you want to add anything else.Adjutant
E
1

There are graph databases like:

A graph database stores data as nodes and relationships/edges.This is a good fit for semi-structured data, interconnected information and domains with deep relationships/traversal, for example social networks and knowledge representation. The data model is highly flexible and "whiteboard friendly". The underlying data model of the semantic web, RDF, is also a (labeled, directed multi-)graph.

Other stackoverflow threads with information on graph databases:

Erasmo answered 13/8, 2009 at 6:18 Comment(0)
H
1

Martin Fowler did an interesting blog post last year about non-relational databases starting to gain traction. He mentions:

  • Drizzle (a "bare bones" relational database)
  • CouchDB (a document-oriented database)
  • GemStone (an object-oriented database)

There is also Google's BigTable which is described as "a sparse, distributed multi-dimensional sorted map".

I have been working with GemStone for a number of years now and the productivity gains is amazing - having the database store your objects directly removes the need to constantly marshall back and forth between tables and objects.

Hypothetical answered 13/8, 2009 at 6:18 Comment(0)
A
1

To file under both 'established' and 'key-value store': Berkeley DB.

Has transactions and replication. Usually linked as a lib (no standalone server, although you may write one). Values and keys are just binary strings, you can provide a custom sorting function for them (where applicable).

Does not prevent from shooting yourself in the foot. Switch off locking/transaction support, access the db from two threads at once, end up with a corrupt file.

Anciently answered 13/8, 2009 at 6:18 Comment(0)
L
0

I doubt I'd use it in a mission-critical system, but Derby has always been very interesting to me.

Larhondalari answered 13/8, 2009 at 6:18 Comment(0)
S
0

What about CassandraDB, Project Voldemort, TokyoCabinet?

Sello answered 13/8, 2009 at 6:18 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.