data-driven-docs

Selft training repo


Project maintained by ggranados Hosted on GitHub Pages — Theme by mattgraham

NoSQL (Not Only SQL) Database

Table of Contents

A NoSQL (which stands for “not only SQL”) database is a type of database management system that is designed to handle and store data in ways that are different from traditional relational databases. NoSQL databases are particularly well-suited for handling large volumes of unstructured or semi-structured data, and they provide more flexibility and scalability than traditional SQL databases in certain use cases.

Here are some key characteristics and features of NoSQL databases:

Back to top

Data Structure

NoSQL databases are designed to store unstructured, semi-structured, or highly variable data. They use various data models, such as document, key-value, column-family, and graph, to accommodate different data types.

Back to top

Data Integrity

NoSQL databases may offer eventual consistency instead of strong ACID guarantees. They prioritize availability and partition tolerance over strict consistency, which is suitable for certain use cases.

Back to top

Query Language

NoSQL databases use query languages specific to their data model. Some support flexible and dynamic querying, while others offer simple key-based retrieval.

Back to top

Schema

NoSQL databases are schema-flexible, meaning you can add or change fields without requiring a predefined schema. This flexibility is well-suited for applications with evolving data requirements.

Back to top

Scaling

NoSQL databases are designed for horizontal scalability, allowing you to add more servers to distribute data and handle increased load. They are suitable for large-scale and distributed systems.

Back to top

Examples

Examples of NoSQL databases include MongoDB (document store), Cassandra (wide-column store), Redis (key-value store), and Neo4j (graph database).

Back to top


Ref.


Get Started | NoSQL