No Sql

The group of NoSQL databases collectively known as aggregate stores (term coined by Martin Fowler) includes key-value stores, wide-column stores and document stores.

Type description example
KV large, distributed hashmap data structures that store and retrieve values organized by identifiers known as keys Redis
WC alt Apache Cassandra
DOC natural hierarchies of structured documents MongoDb
trait pro / con
data relationship insight KV ✖
high availability KV ✔
horizontal scaling DOC ✖ explicit sharding plan
scale KV ✔, WC ✔
sets of information for several records KV ✖ (mapreduce+latency)