Types of NoSQL databases

来源:互联网 发布:java怎么显示行 编辑:程序博客网 时间:2024/05/17 17:57


The NoSQL databases currently being used can be grouped into four broad categories:

  • Key-value data stores: Data is stored as key-value pairs. Values are retrieved by keys.Redis, Dynomite, and Voldemort are examples of such databases.

  • Column-based databases: These databases organize the data in tables, similar to anRDBMS, however, they store the content by columns instead of rows. They are goodfor data warehousing applications. Examples of column-based databases are Hbase,Cassandra, Hypertable, and so on.

  • Document-based databases: Data is stored and organized as a collection ofdocuments. The documents are flexible; each document can have any number offields. Apache CouchDBand MongoDB are prominent document databases.

  • Graph-based data-stores: These databases apply the computer science graph theoryfor storing and retrieving data. They focus on interconnectivity of different parts
    of data. Units of data are visualized as nodes and relationships among them aredefined by edges connecting the nodes. Neo4j is an example of such a database. 

0 0
原创粉丝点击