NoSQL Databases Types

There are 4 basic types of NoSQL databases:
  1. Key-Value Store – Every single item in the database is stored as an attribute name (or 'key'), together with its value. (Riak, DynamoDB)
  2. Document-based Store - It stores documents made up of tagged elements. Documents can contain many different key-value pairs, or key-array pairs, or even nested documents.(MongoDB, CouchDB)
  3. Column-based Store - Each storage block contains data from only one column (HBase, Cassandra)
  4. Graph-based - Used to store information about networks of data, such as social connections. (Neo4J, Giraph)



Links:

Comments

  1. Thank you for sharing wonderful information with us to get some idea about it.

    full stack training

    ReplyDelete
  2. This comment has been removed by the author.

    ReplyDelete
  3. This comment has been removed by the author.

    ReplyDelete

Post a Comment

Popular posts from this blog

Getter Template with Optional<> for IntelliJ IDEA

JVM Memory and Tuning

Three-phase commit protocol - 3PC