Update README.md

Contrast BASE with ACID instead of the CAP teorem
pull/884/head
Ivan Šarić 2024-07-14 16:58:30 +02:00 committed by GitHub
parent 3df19b2e4f
commit 609b4eef3d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -992,7 +992,7 @@ Benchmarking and profiling might point you to the following optimizations.
NoSQL is a collection of data items represented in a **key-value store**, **document store**, **wide column store**, or a **graph database**. Data is denormalized, and joins are generally done in the application code. Most NoSQL stores lack true ACID transactions and favor [eventual consistency](#eventual-consistency). NoSQL is a collection of data items represented in a **key-value store**, **document store**, **wide column store**, or a **graph database**. Data is denormalized, and joins are generally done in the application code. Most NoSQL stores lack true ACID transactions and favor [eventual consistency](#eventual-consistency).
**BASE** is often used to describe the properties of NoSQL databases. In comparison with the [CAP Theorem](#cap-theorem), BASE chooses availability over consistency. **BASE** is often used to describe the properties of NoSQL databases. In comparison with the [ACID](#relational-database-management-system-rdbms), BASE chooses availability over consistency.
* **Basically available** - the system guarantees availability. * **Basically available** - the system guarantees availability.
* **Soft state** - the state of the system may change over time, even without input. * **Soft state** - the state of the system may change over time, even without input.