#engineering #technology

Idea

NoSQL is pretty much any storage solution that is non-relational. Data are often stored in a document structure, using a certain key, sometimes partition keys, to retrieve a given document. Documents often don't have a schema. Some NoSQL stores provide indexing[1]. Non-relational storage is often cheaper than structured/relational, and can provide fast response times for point-queries (retrieve one document) or sequential queries (retrieve documents with sequential keys). Examples of NoSQL solutions include:

Links

{TODO: add event sourcing link} - Key-value stores are particularly adapted to storing events.

References