/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

blog.dancrisan.com
| | baransel.dev
3.4 parsecs away

Travel
| | Discover the basics of SQL
| | timilearning.com
3.8 parsecs away

Travel
| | My notes from the second chapter of Martin Kleppmann's book: Designing Data Intensive Applications.
| | johnjr.dev
3.6 parsecs away

Travel
| | When we study transactions in relational databases, one of the first things we learn are the guarantees that a transaction must provide. ACID(Atomicity, Consistency, Isolation, Durability) are the properties that we desire. Here, I will discuss the Isolation level in more detail and show that atomicity alone is not enough when handling concurrency. One classic example of the importance of atomicity is moving money between accounts. So, imagine that we have two accounts and we would like to transfer the total amount from one account to another one. In a relational database, what we need to do is three steps:
| | cleverheap.com
11.8 parsecs away

Travel
| Vast of the today's applications leverage on some type of a database that provides ACID guarantees with transactions. It is important to know the differences between different isolation levels to facilitate the choice when applying them...