Skip to content

Commit 7855b3e

Browse files
committed
question on eventual consistency
1 parent d1f803f commit 7855b3e

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1383,6 +1383,7 @@
13831383
| 4 | [What are the read phenomena in Isolation?](#what-are-the-read-phenomena-in-isolation)
13841384
| 5 | [What are the four Isolation levels?](#what-are-the-four-isolation-levels)
13851385
| 6 | [Which isolation levels can prevent problems that occur in read phenomena?](#which-isolation-levels-can-prevent-problems-that-occur-in-read-phenomena)
1386+
| 7 | [What does Eventually Consistent Mean?](#what-does-eventually-consistent-mean)
13861387

13871388
1. ### What is ACID Model in Database?
13881389

@@ -1430,4 +1431,11 @@
14301431

14311432

14321433

1434+
**[ Back to Top ⬆ ](#table-of-contents---database-engineering)**
1435+
1436+
1437+
7. ### What does Eventually Consistent Mean ?
1438+
1439+
**Eventual Consistency** concept is that while a database may have some inconsistencies at any point in time, it will eventually become consistent when all updates cease i.e eventually all nodes will receive the latest consistent updates.
1440+
14331441
**[ Back to Top ⬆ ](#table-of-contents---database-engineering)**

sentence_to_hashing_converter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ function hashing(num=0,str) {
2020
return `| ${num} | [${str}?](#${hashed})`
2121
}
2222

23-
console.log(hashing(6,'Which isolation levels can prevent problems that occur in read phenomena'));
23+
console.log(hashing(6,'What does Eventually Consistent Mean'));

0 commit comments

Comments
 (0)