From e67c9a4cae47d3f900d23b073d6323f6830cadfc Mon Sep 17 00:00:00 2001 From: asahi Date: Sun, 10 Aug 2025 21:18:53 +0800 Subject: [PATCH] =?UTF-8?q?doc:=20=E5=88=A0=E9=99=A4=E8=AF=AF=E8=A7=A3?= =?UTF-8?q?=E7=9A=84=E6=96=87=E6=A1=A3=E5=86=85=E5=AE=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mysql/mysql文档/mysql_事务.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/mysql/mysql文档/mysql_事务.md b/mysql/mysql文档/mysql_事务.md index b348066..987f5c1 100644 --- a/mysql/mysql文档/mysql_事务.md +++ b/mysql/mysql文档/mysql_事务.md @@ -290,10 +290,6 @@ innodb通过segment来管理undo log,其管理方式如下: 每个rollback segments支持的事务数量由`rollback segment中undo slot的数量`和`每个事务需要的undo log数量`来决定。 > 当innodb页大小为16KB时,rollback segment中undo slot的数量为`innodb page size/ 16`,即1024个。 -> -> 易知,每个slot占用的大小为`16bit`,即长度为2字节。 -> -> 故而,`slot中存放的是指向undo segment的句柄,而不是存放undo segment本身`。 ##### innodb_undo_tablespaces 该变量设置了undo tablespaces的数量。