From 41be56b985ba62eb8b304df29051ce0180f572c1 Mon Sep 17 00:00:00 2001 From: houfaxin Date: Wed, 4 Sep 2024 20:41:24 +0800 Subject: [PATCH] Update glossary.md --- glossary.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glossary.md b/glossary.md index 5b404be6358cd..6cf8a46c5c1cb 100644 --- a/glossary.md +++ b/glossary.md @@ -16,7 +16,7 @@ ACID refers to the four key properties of a transaction: atomicity, consistency, - **Consistency** means that transactions always bring the database from one consistent state to another. In TiDB, data consistency is ensured before writing data to the memory. -- **Isolation** means that a transaction in process is invisible to other transactions until it completes. This allows concurrent transactions to read and write data without sacrificing consistency. TiDB currently supports the isolation level of `REPEATABLE READ`. +- **Isolation** means that a transaction in process is invisible to other transactions until it completes. This allows concurrent transactions to read and write data without sacrificing consistency. For more information, see [TiDB transaction isolation levels](/transaction-isolation-levels.md#tidb-transaction-isolation-levels). - **Durability** means that once a transaction is committed, it remains committed even in the event of a system failure. TiKV uses persistent storage to ensure durability.