Why do we use NOSQL?

Knowing some of the advantages provided by NoSQL (scalability, usability, etc.), I still don’t know why a website wants to use a non-relational database.
Can I get some help, is it best to use an example?
Better performance

NoSQL databases sometimes have better performance, although It depends on the specific circumstances and is controversial.

Adaptability

You can add and delete “columns” without downtime. In most SQL Servers, this takes a long time and bears the load.

Application design

It is better to separate data storage from logic. If you add and select content in the SQL query, then you mix business logic and storage.

Understanding some of the advantages provided by NoSQL (scalability, usability, etc.), I still don’t know why a website wants to use a non-relational database.
Can I get some help, is it best to use an example?

Better performance

NoSQL databases sometimes have better performance, although it depends on specific circumstances and is controversial.

Adaptability

You can add and delete “columns” without downtime. In most SQL Servers, this takes a long time and bears the load.

Application design

It is better to separate data storage from logic. If you add and select content in the SQL query, then you mix business logic and storage.

Leave a Comment

Your email address will not be published.