@@ -291,7 +291,7 @@ (2) 脏读
T1 修改一个数据,T2 随后读取这个数据。如果 T1 撤销了这次修改,那么 T2 读取的数据是脏数据。
+2. 脏读
T1 修改一个数据,T2 随后读取这个数据。如果 T1 撤销了这次修改,那么 T2 读取的数据是脏数据。
T1 对 A 进行修改,但之后回滚撤销,T2 读取的数据与数据库中不一致,是错误的数据(脏数据)。
-(3) 不可重复读
T2 读取一个数据,T1 对该数据做了修改。如果 T2 再次读取这个数据,此时读取的结果和第一次读取的结果不同。
+3. 不可重复读
T2 读取一个数据,T1 对该数据做了修改。如果 T2 再次读取这个数据,此时读取的结果和第一次读取的结果不同。
T1 读取数据并进行计算,T2 更新了数据,T1 再次读取数据,然而计算结果不一致。
-(4) 幻读
T1 读取某个范围的数据,T2 在这个范围内插入或删除数据,T1 再次读取这个范围的数据,此时读取的结果和和第一次读取的结果不同。
+4. 幻读
T1 读取某个范围的数据,T2 在这个范围内插入或删除数据,T1 再次读取这个范围的数据,此时读取的结果和和第一次读取的结果不同。
+(三) 隔离级别
为了解决数据不一致的问题,数据库中的事务隔离分为如下四种:
+
+- 读未提交:最低的隔离级别,允许读取尚未提交的数据变更,可能会导致脏读。
+- 读已提交:允许读取并发事务已经提交的数据,可以阻止脏读,但是幻读或不可重复读仍有可能发生。这是大多数数据库默认的隔离级别。
+- 可重复读:对同一字段的多次读取结果都是一致的,除非数据是被本身事务自己所修改,可以防止脏读和不可重复读,但是幻读仍有可能发生。这是 MySQL 数据库默认的隔离级别。
+- 串行化:最高的隔离级别,完全服从 ACID 的隔离级别。所有的事务依次逐个执行。
+
+
+
+
+隔离级别 |
+导致脏读 |
+导致不可重复读 |
+导致幻读 |
+实现机制 |
+
+
+
+读未提交 |
+Y |
+Y |
+Y |
+无 |
+
+
+读已提交 |
+N |
+Y |
+Y |
+读锁 |
+
+
+可重复读 |
+N |
+N |
+Y |
+读锁 +MVVC |
+
+
+串行化 |
+N |
+N |
+N |
+对所有数据行加锁 |
+
+
+隔离级别从上到下越来越严格,并发造成的数据不一致可能性越小,但需要付出的性能代价越大。
+(四) 锁
数据库的隔离级别是通过锁机制来实现的。从不同的角度对锁进行分类:
+
+- 根据 性能
+- 乐观锁:通过版本对比来实现并发控制,假设事务之间不会发生冲突,直到提交操作时才会检查是否有冲突。
+
+- 悲观锁:假设事务之间会发生冲突,因此在访问数据之前就会加锁,保证同一时间只有一个事务能够访问数据。
+
+
+
+- 根据 对数据库的操作粒度
+- 表锁:锁定整个表,在事务操作时会锁定整张表,影响表中所有数据。
+- 每次操作锁住一张表。加锁的开销小,加锁快,不会出现死锁;锁定粒度大,容易发生锁冲突,并发度最低。适用于整张表数据迁移的场景。
+
+
+- 行锁:只锁定某行数据,使其他事务无法修改该行数据,但不影响表中其他数据的访问。
+- 每次操作只锁住表中一行数据。加锁的开销大,加锁慢,可能会出现死锁;锁定粒度最小,发生锁冲突的概率最低,并发度最高。
+
+
+
+
+- 根据 对数据库的操作类型
+- 读锁 ( 共享锁,S 锁 Shared):在事务读取数据时加锁,其他事务可以读取同一数据,但不能进行写操作。
+- 事务 T1 对数据库添加 S 锁,事务 T1 可以进行读写,事务 T2 只能读不能写。
+
+
+- 写锁 ( 排它锁,X 锁 eXclusive):在事务对数据进行写入或修改时加锁,阻止其他事务对该数据的读写操作。
+- 事务 T1 对数据库添加 X 锁,事务 T1 可以进行读写,事务 T2 无法读写。
+
+
+
+
+
@@ -565,7 +648,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git "a/2024/\350\275\257\350\200\203\346\236\266\346\236\204\342\200\224\342\200\224\346\225\260\346\215\256\345\272\223\350\256\276\350\256\241\344\270\216\345\273\272\346\250\241/index.html" "b/2024/\350\275\257\350\200\203\346\236\266\346\236\204\342\200\224\342\200\224\346\225\260\346\215\256\345\272\223\350\256\276\350\256\241\344\270\216\345\273\272\346\250\241/index.html"
index 6f7986c..0420259 100644
--- "a/2024/\350\275\257\350\200\203\346\236\266\346\236\204\342\200\224\342\200\224\346\225\260\346\215\256\345\272\223\350\256\276\350\256\241\344\270\216\345\273\272\346\250\241/index.html"
+++ "b/2024/\350\275\257\350\200\203\346\236\266\346\236\204\342\200\224\342\200\224\346\225\260\346\215\256\345\272\223\350\256\276\350\256\241\344\270\216\345\273\272\346\250\241/index.html"
@@ -921,7 +921,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git "a/2024/\350\275\257\350\200\203\346\236\266\346\236\204\342\200\224\342\200\224\347\263\273\347\273\237\345\210\206\346\236\220\344\270\216\350\256\276\350\256\241\357\274\232\347\273\223\346\236\204\345\214\226\344\270\216\351\235\242\345\220\221\345\257\271\350\261\241/index.html" "b/2024/\350\275\257\350\200\203\346\236\266\346\236\204\342\200\224\342\200\224\347\263\273\347\273\237\345\210\206\346\236\220\344\270\216\350\256\276\350\256\241\357\274\232\347\273\223\346\236\204\345\214\226\344\270\216\351\235\242\345\220\221\345\257\271\350\261\241/index.html"
index 64303c2..70ba694 100644
--- "a/2024/\350\275\257\350\200\203\346\236\266\346\236\204\342\200\224\342\200\224\347\263\273\347\273\237\345\210\206\346\236\220\344\270\216\350\256\276\350\256\241\357\274\232\347\273\223\346\236\204\345\214\226\344\270\216\351\235\242\345\220\221\345\257\271\350\261\241/index.html"
+++ "b/2024/\350\275\257\350\200\203\346\236\266\346\236\204\342\200\224\342\200\224\347\263\273\347\273\237\345\210\206\346\236\220\344\270\216\350\256\276\350\256\241\357\274\232\347\273\223\346\236\204\345\214\226\344\270\216\351\235\242\345\220\221\345\257\271\350\261\241/index.html"
@@ -797,7 +797,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git a/404.html b/404.html
index a0efed6..4fa4bf9 100644
--- a/404.html
+++ b/404.html
@@ -376,7 +376,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git a/all-archives/index.html b/all-archives/index.html
index b075b18..583cb5c 100644
--- a/all-archives/index.html
+++ b/all-archives/index.html
@@ -690,7 +690,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git a/all-categories/index.html b/all-categories/index.html
index 6fa51b2..dddec37 100644
--- a/all-categories/index.html
+++ b/all-categories/index.html
@@ -370,7 +370,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git a/all-tags/index.html b/all-tags/index.html
index 3df6643..1b3bd0e 100644
--- a/all-tags/index.html
+++ b/all-tags/index.html
@@ -1514,7 +1514,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git a/archives/2023/01/index.html b/archives/2023/01/index.html
index acd2e3f..1ae3647 100644
--- a/archives/2023/01/index.html
+++ b/archives/2023/01/index.html
@@ -335,7 +335,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git a/archives/2023/04/index.html b/archives/2023/04/index.html
index 18a345b..a3be8ac 100644
--- a/archives/2023/04/index.html
+++ b/archives/2023/04/index.html
@@ -378,7 +378,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git a/archives/2023/05/index.html b/archives/2023/05/index.html
index 586ea31..17fc830 100644
--- a/archives/2023/05/index.html
+++ b/archives/2023/05/index.html
@@ -378,7 +378,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git a/archives/2023/06/index.html b/archives/2023/06/index.html
index 1c56e8e..d83e503 100644
--- a/archives/2023/06/index.html
+++ b/archives/2023/06/index.html
@@ -335,7 +335,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git a/archives/2023/07/index.html b/archives/2023/07/index.html
index 8e8e526..7aa51cd 100644
--- a/archives/2023/07/index.html
+++ b/archives/2023/07/index.html
@@ -335,7 +335,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git a/archives/2023/09/index.html b/archives/2023/09/index.html
index 52a636b..bd70900 100644
--- a/archives/2023/09/index.html
+++ b/archives/2023/09/index.html
@@ -378,7 +378,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git a/archives/2023/10/index.html b/archives/2023/10/index.html
index 1de1d3f..e7dabe8 100644
--- a/archives/2023/10/index.html
+++ b/archives/2023/10/index.html
@@ -335,7 +335,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git a/archives/2023/11/index.html b/archives/2023/11/index.html
index a5db2e2..ad620b6 100644
--- a/archives/2023/11/index.html
+++ b/archives/2023/11/index.html
@@ -335,7 +335,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git a/archives/2023/12/index.html b/archives/2023/12/index.html
index 9b6f77d..ab4d512 100644
--- a/archives/2023/12/index.html
+++ b/archives/2023/12/index.html
@@ -335,7 +335,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git a/archives/2023/index.html b/archives/2023/index.html
index 3c47199..ea7849e 100644
--- a/archives/2023/index.html
+++ b/archives/2023/index.html
@@ -729,7 +729,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git a/archives/2023/page/2/index.html b/archives/2023/page/2/index.html
index b0bce55..ea14944 100644
--- a/archives/2023/page/2/index.html
+++ b/archives/2023/page/2/index.html
@@ -385,7 +385,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git a/archives/2024/01/index.html b/archives/2024/01/index.html
index 14168a2..62a4fda 100644
--- a/archives/2024/01/index.html
+++ b/archives/2024/01/index.html
@@ -335,7 +335,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git a/archives/2024/02/index.html b/archives/2024/02/index.html
index abb6bc3..be69f5b 100644
--- a/archives/2024/02/index.html
+++ b/archives/2024/02/index.html
@@ -335,7 +335,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git a/archives/2024/04/index.html b/archives/2024/04/index.html
index 6ab3432..7e9a2a2 100644
--- a/archives/2024/04/index.html
+++ b/archives/2024/04/index.html
@@ -335,7 +335,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git a/archives/2024/05/index.html b/archives/2024/05/index.html
index 68b7bff..a0f2b9f 100644
--- a/archives/2024/05/index.html
+++ b/archives/2024/05/index.html
@@ -335,7 +335,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git a/archives/2024/06/index.html b/archives/2024/06/index.html
index 04e30f3..8e5b4e2 100644
--- a/archives/2024/06/index.html
+++ b/archives/2024/06/index.html
@@ -335,7 +335,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git a/archives/2024/07/index.html b/archives/2024/07/index.html
index c24d99d..edfecac 100644
--- a/archives/2024/07/index.html
+++ b/archives/2024/07/index.html
@@ -378,7 +378,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git a/archives/2024/08/index.html b/archives/2024/08/index.html
index 6874498..b43026a 100644
--- a/archives/2024/08/index.html
+++ b/archives/2024/08/index.html
@@ -335,7 +335,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git a/archives/2024/09/index.html b/archives/2024/09/index.html
index c2813ff..b75a17a 100644
--- a/archives/2024/09/index.html
+++ b/archives/2024/09/index.html
@@ -335,7 +335,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git a/archives/2024/10/index.html b/archives/2024/10/index.html
index ba402e9..4d8d798 100644
--- a/archives/2024/10/index.html
+++ b/archives/2024/10/index.html
@@ -464,7 +464,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git a/archives/2024/index.html b/archives/2024/index.html
index 1e2ec5b..029cd27 100644
--- a/archives/2024/index.html
+++ b/archives/2024/index.html
@@ -729,7 +729,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git a/archives/2024/page/2/index.html b/archives/2024/page/2/index.html
index 74196e9..e1ab2e0 100644
--- a/archives/2024/page/2/index.html
+++ b/archives/2024/page/2/index.html
@@ -428,7 +428,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git a/archives/index.html b/archives/index.html
index a063e81..05a6257 100644
--- a/archives/index.html
+++ b/archives/index.html
@@ -729,7 +729,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git a/archives/page/2/index.html b/archives/page/2/index.html
index f8673b3..ef7e335 100644
--- a/archives/page/2/index.html
+++ b/archives/page/2/index.html
@@ -736,7 +736,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git a/archives/page/3/index.html b/archives/page/3/index.html
index 42e0b48..7df7d67 100644
--- a/archives/page/3/index.html
+++ b/archives/page/3/index.html
@@ -514,7 +514,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git a/baidusitemap.xml b/baidusitemap.xml
index b8e90a2..8de1fcf 100644
--- a/baidusitemap.xml
+++ b/baidusitemap.xml
@@ -2,7 +2,7 @@
https://www.stepbystep.asia/2024/%E8%BD%AF%E8%80%83%E6%9E%B6%E6%9E%84%E2%80%94%E2%80%94%E6%95%B0%E6%8D%AE%E5%BA%93%E7%9A%84%E6%8E%A7%E5%88%B6%E5%8A%9F%E8%83%BD/
- 2024-10-29
+ 2024-10-30
https://www.stepbystep.asia/2024/%E8%BD%AF%E8%80%83%E6%9E%B6%E6%9E%84%E2%80%94%E2%80%94%E6%95%B0%E6%8D%AE%E5%BA%93%E8%AE%BE%E8%AE%A1%E4%B8%8E%E5%BB%BA%E6%A8%A1/
diff --git a/categories/web/index.html b/categories/web/index.html
index 4097d63..ebd1da1 100644
--- a/categories/web/index.html
+++ b/categories/web/index.html
@@ -335,7 +335,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git "a/categories/\345\256\211\345\205\250/index.html" "b/categories/\345\256\211\345\205\250/index.html"
index 4dd8052..ef83dd4 100644
--- "a/categories/\345\256\211\345\205\250/index.html"
+++ "b/categories/\345\256\211\345\205\250/index.html"
@@ -729,7 +729,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git "a/categories/\345\256\211\345\205\250/page/2/index.html" "b/categories/\345\256\211\345\205\250/page/2/index.html"
index e73ddf7..8d5ec0a 100644
--- "a/categories/\345\256\211\345\205\250/page/2/index.html"
+++ "b/categories/\345\256\211\345\205\250/page/2/index.html"
@@ -385,7 +385,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git "a/categories/\345\256\211\345\205\250/\346\250\241\347\263\212\346\265\213\350\257\225/index.html" "b/categories/\345\256\211\345\205\250/\346\250\241\347\263\212\346\265\213\350\257\225/index.html"
index 84a38e5..ae40d83 100644
--- "a/categories/\345\256\211\345\205\250/\346\250\241\347\263\212\346\265\213\350\257\225/index.html"
+++ "b/categories/\345\256\211\345\205\250/\346\250\241\347\263\212\346\265\213\350\257\225/index.html"
@@ -636,7 +636,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git "a/categories/\345\256\211\345\205\250/\346\261\241\347\202\271\345\210\206\346\236\220/index.html" "b/categories/\345\256\211\345\205\250/\346\261\241\347\202\271\345\210\206\346\236\220/index.html"
index ebff009..ff30ea6 100644
--- "a/categories/\345\256\211\345\205\250/\346\261\241\347\202\271\345\210\206\346\236\220/index.html"
+++ "b/categories/\345\256\211\345\205\250/\346\261\241\347\202\271\345\210\206\346\236\220/index.html"
@@ -335,7 +335,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git "a/categories/\345\256\211\345\205\250/\347\254\246\345\217\267\346\211\247\350\241\214/index.html" "b/categories/\345\256\211\345\205\250/\347\254\246\345\217\267\346\211\247\350\241\214/index.html"
index 673887e..0444bc6 100644
--- "a/categories/\345\256\211\345\205\250/\347\254\246\345\217\267\346\211\247\350\241\214/index.html"
+++ "b/categories/\345\256\211\345\205\250/\347\254\246\345\217\267\346\211\247\350\241\214/index.html"
@@ -421,7 +421,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git "a/categories/\345\274\200\345\217\221/Docker/index.html" "b/categories/\345\274\200\345\217\221/Docker/index.html"
index 554b3d9..4cd3de1 100644
--- "a/categories/\345\274\200\345\217\221/Docker/index.html"
+++ "b/categories/\345\274\200\345\217\221/Docker/index.html"
@@ -335,7 +335,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git "a/categories/\345\274\200\345\217\221/Linux/index.html" "b/categories/\345\274\200\345\217\221/Linux/index.html"
index d6c5c4f..47c6b16 100644
--- "a/categories/\345\274\200\345\217\221/Linux/index.html"
+++ "b/categories/\345\274\200\345\217\221/Linux/index.html"
@@ -335,7 +335,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git "a/categories/\345\274\200\345\217\221/index.html" "b/categories/\345\274\200\345\217\221/index.html"
index 8ba3449..7ba1c3d 100644
--- "a/categories/\345\274\200\345\217\221/index.html"
+++ "b/categories/\345\274\200\345\217\221/index.html"
@@ -421,7 +421,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git "a/categories/\345\274\200\345\217\221/\347\210\254\350\231\253/index.html" "b/categories/\345\274\200\345\217\221/\347\210\254\350\231\253/index.html"
index 5170947..888e32b 100644
--- "a/categories/\345\274\200\345\217\221/\347\210\254\350\231\253/index.html"
+++ "b/categories/\345\274\200\345\217\221/\347\210\254\350\231\253/index.html"
@@ -335,7 +335,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git "a/categories/\347\274\226\347\250\213\350\257\255\350\250\200/C/index.html" "b/categories/\347\274\226\347\250\213\350\257\255\350\250\200/C/index.html"
index d012f33..9ed68ab 100644
--- "a/categories/\347\274\226\347\250\213\350\257\255\350\250\200/C/index.html"
+++ "b/categories/\347\274\226\347\250\213\350\257\255\350\250\200/C/index.html"
@@ -464,7 +464,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git "a/categories/\347\274\226\347\250\213\350\257\255\350\250\200/Python/index.html" "b/categories/\347\274\226\347\250\213\350\257\255\350\250\200/Python/index.html"
index 68f5690..a82808e 100644
--- "a/categories/\347\274\226\347\250\213\350\257\255\350\250\200/Python/index.html"
+++ "b/categories/\347\274\226\347\250\213\350\257\255\350\250\200/Python/index.html"
@@ -378,7 +378,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git "a/categories/\347\274\226\347\250\213\350\257\255\350\250\200/index.html" "b/categories/\347\274\226\347\250\213\350\257\255\350\250\200/index.html"
index 9d436ea..07e5d6a 100644
--- "a/categories/\347\274\226\347\250\213\350\257\255\350\250\200/index.html"
+++ "b/categories/\347\274\226\347\250\213\350\257\255\350\250\200/index.html"
@@ -550,7 +550,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git "a/categories/\350\275\257\350\200\203/index.html" "b/categories/\350\275\257\350\200\203/index.html"
index bb03a77..c840cdc 100644
--- "a/categories/\350\275\257\350\200\203/index.html"
+++ "b/categories/\350\275\257\350\200\203/index.html"
@@ -421,7 +421,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git "a/categories/\350\275\257\350\200\203/\347\263\273\347\273\237\346\236\266\346\236\204/index.html" "b/categories/\350\275\257\350\200\203/\347\263\273\347\273\237\346\236\266\346\236\204/index.html"
index e0a62f1..73851e5 100644
--- "a/categories/\350\275\257\350\200\203/\347\263\273\347\273\237\346\236\266\346\236\204/index.html"
+++ "b/categories/\350\275\257\350\200\203/\347\263\273\347\273\237\346\236\266\346\236\204/index.html"
@@ -421,7 +421,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git a/index.html b/index.html
index 06e45e8..03bb3b0 100644
--- a/index.html
+++ b/index.html
@@ -727,7 +727,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git a/page/2/index.html b/page/2/index.html
index c51fda8..077191f 100644
--- a/page/2/index.html
+++ b/page/2/index.html
@@ -734,7 +734,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git a/page/3/index.html b/page/3/index.html
index 66aaa56..f813446 100644
--- a/page/3/index.html
+++ b/page/3/index.html
@@ -512,7 +512,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git a/sitemap.xml b/sitemap.xml
index ec7c3a2..5460358 100644
--- a/sitemap.xml
+++ b/sitemap.xml
@@ -4,7 +4,7 @@
https://www.stepbystep.asia/2024/%E8%BD%AF%E8%80%83%E6%9E%B6%E6%9E%84%E2%80%94%E2%80%94%E6%95%B0%E6%8D%AE%E5%BA%93%E7%9A%84%E6%8E%A7%E5%88%B6%E5%8A%9F%E8%83%BD/
- 2024-10-29
+ 2024-10-30
monthly
0.6
@@ -265,7 +265,7 @@
https://www.stepbystep.asia/
- 2024-10-29
+ 2024-10-30
daily
1.0
@@ -273,217 +273,217 @@
https://www.stepbystep.asia/tags/AFL/
- 2024-10-29
+ 2024-10-30
weekly
0.2
https://www.stepbystep.asia/tags/Fuzz/
- 2024-10-29
+ 2024-10-30
weekly
0.2
https://www.stepbystep.asia/tags/%E5%AE%89%E5%85%A8/
- 2024-10-29
+ 2024-10-30
weekly
0.2
https://www.stepbystep.asia/tags/%E5%B7%A5%E5%85%B7/
- 2024-10-29
+ 2024-10-30
weekly
0.2
https://www.stepbystep.asia/tags/AFL/
- 2024-10-29
+ 2024-10-30
weekly
0.2
- https://www.stepbystep.asia/tags/%E7%AC%A6%E5%8F%B7%E6%89%A7%E8%A1%8C/
- 2024-10-29
+ https://www.stepbystep.asia/tags/C/
+ 2024-10-30
weekly
0.2
- https://www.stepbystep.asia/tags/C/
- 2024-10-29
+ https://www.stepbystep.asia/tags/%E7%BC%96%E7%A8%8B/
+ 2024-10-30
weekly
0.2
- https://www.stepbystep.asia/tags/%E7%BC%96%E7%A8%8B/
- 2024-10-29
+ https://www.stepbystep.asia/tags/%E5%BC%80%E5%8F%91/
+ 2024-10-30
weekly
0.2
- https://www.stepbystep.asia/tags/%E5%BC%80%E5%8F%91/
- 2024-10-29
+ https://www.stepbystep.asia/tags/%E7%AC%A6%E5%8F%B7%E6%89%A7%E8%A1%8C/
+ 2024-10-30
weekly
0.2
- https://www.stepbystep.asia/tags/blog/
- 2024-10-29
+ https://www.stepbystep.asia/tags/Docker/
+ 2024-10-30
weekly
0.2
- https://www.stepbystep.asia/tags/web/
- 2024-10-29
+ https://www.stepbystep.asia/tags/%E5%AE%B9%E5%99%A8/
+ 2024-10-30
weekly
0.2
- https://www.stepbystep.asia/tags/Hexo/
- 2024-10-29
+ https://www.stepbystep.asia/tags/LibFuzzer/
+ 2024-10-30
weekly
0.2
- https://www.stepbystep.asia/tags/tranquilpeak/
- 2024-10-29
+ https://www.stepbystep.asia/tags/blog/
+ 2024-10-30
weekly
0.2
- https://www.stepbystep.asia/tags/Docker/
- 2024-10-29
+ https://www.stepbystep.asia/tags/web/
+ 2024-10-30
weekly
0.2
- https://www.stepbystep.asia/tags/%E5%AE%B9%E5%99%A8/
- 2024-10-29
+ https://www.stepbystep.asia/tags/Hexo/
+ 2024-10-30
weekly
0.2
- https://www.stepbystep.asia/tags/LibFuzzer/
- 2024-10-29
+ https://www.stepbystep.asia/tags/tranquilpeak/
+ 2024-10-30
weekly
0.2
https://www.stepbystep.asia/tags/Linux/
- 2024-10-29
+ 2024-10-30
weekly
0.2
https://www.stepbystep.asia/tags/%E6%93%8D%E4%BD%9C%E7%B3%BB%E7%BB%9F/
- 2024-10-29
+ 2024-10-30
weekly
0.2
https://www.stepbystep.asia/tags/%E5%91%BD%E4%BB%A4/
- 2024-10-29
+ 2024-10-30
weekly
0.2
- https://www.stepbystep.asia/tags/Python/
- 2024-10-29
+ https://www.stepbystep.asia/tags/IntelPin/
+ 2024-10-30
weekly
0.2
- https://www.stepbystep.asia/tags/%E8%BD%AF%E4%BB%B6%E5%B7%A5%E7%A8%8B/
- 2024-10-29
+ https://www.stepbystep.asia/tags/%E6%B1%A1%E7%82%B9%E5%88%86%E6%9E%90/
+ 2024-10-30
weekly
0.2
- https://www.stepbystep.asia/tags/%E6%95%B0%E6%8D%AE%E5%BA%93%E8%AE%BE%E8%AE%A1/
- 2024-10-29
+ https://www.stepbystep.asia/tags/Python/
+ 2024-10-30
weekly
0.2
- https://www.stepbystep.asia/tags/%E6%95%B0%E6%8D%AE%E5%BA%93%E8%8C%83%E5%BC%8F/
- 2024-10-29
+ https://www.stepbystep.asia/tags/%E8%BD%AF%E4%BB%B6%E5%B7%A5%E7%A8%8B/
+ 2024-10-30
weekly
0.2
- https://www.stepbystep.asia/tags/IntelPin/
- 2024-10-29
+ https://www.stepbystep.asia/tags/%E6%95%B0%E6%8D%AE%E5%BA%93%E8%AE%BE%E8%AE%A1/
+ 2024-10-30
weekly
0.2
- https://www.stepbystep.asia/tags/%E6%B1%A1%E7%82%B9%E5%88%86%E6%9E%90/
- 2024-10-29
+ https://www.stepbystep.asia/tags/%E6%95%B0%E6%8D%AE%E5%BA%93%E8%8C%83%E5%BC%8F/
+ 2024-10-30
weekly
0.2
https://www.stepbystep.asia/tags/Web/
- 2024-10-29
+ 2024-10-30
weekly
0.2
https://www.stepbystep.asia/tags/%E7%88%AC%E8%99%AB/
- 2024-10-29
+ 2024-10-30
weekly
0.2
https://www.stepbystep.asia/tags/python/
- 2024-10-29
+ 2024-10-30
weekly
0.2
https://www.stepbystep.asia/tags/%E7%B3%BB%E7%BB%9F%E5%88%86%E6%9E%90%E4%B8%8E%E8%AE%BE%E8%AE%A1/
- 2024-10-29
+ 2024-10-30
weekly
0.2
https://www.stepbystep.asia/tags/%E7%BB%93%E6%9E%84%E5%8C%96%E6%96%B9%E6%B3%95/
- 2024-10-29
+ 2024-10-30
weekly
0.2
https://www.stepbystep.asia/tags/%E9%9D%A2%E5%90%91%E5%AF%B9%E8%B1%A1%E6%96%B9%E6%B3%95/
- 2024-10-29
+ 2024-10-30
weekly
0.2
@@ -492,98 +492,98 @@
https://www.stepbystep.asia/categories/%E5%AE%89%E5%85%A8/
- 2024-10-29
+ 2024-10-30
weekly
0.2
- https://www.stepbystep.asia/categories/%E5%AE%89%E5%85%A8/%E7%AC%A6%E5%8F%B7%E6%89%A7%E8%A1%8C/
- 2024-10-29
+ https://www.stepbystep.asia/categories/%E7%BC%96%E7%A8%8B%E8%AF%AD%E8%A8%80/
+ 2024-10-30
weekly
0.2
https://www.stepbystep.asia/categories/%E5%AE%89%E5%85%A8/%E6%A8%A1%E7%B3%8A%E6%B5%8B%E8%AF%95/
- 2024-10-29
+ 2024-10-30
weekly
0.2
- https://www.stepbystep.asia/categories/%E7%BC%96%E7%A8%8B%E8%AF%AD%E8%A8%80/
- 2024-10-29
+ https://www.stepbystep.asia/categories/%E5%AE%89%E5%85%A8/%E7%AC%A6%E5%8F%B7%E6%89%A7%E8%A1%8C/
+ 2024-10-30
weekly
0.2
https://www.stepbystep.asia/categories/%E7%BC%96%E7%A8%8B%E8%AF%AD%E8%A8%80/C/
- 2024-10-29
+ 2024-10-30
weekly
0.2
- https://www.stepbystep.asia/categories/web/
- 2024-10-29
+ https://www.stepbystep.asia/categories/%E5%BC%80%E5%8F%91/
+ 2024-10-30
weekly
0.2
- https://www.stepbystep.asia/categories/%E5%BC%80%E5%8F%91/
- 2024-10-29
+ https://www.stepbystep.asia/categories/web/
+ 2024-10-30
weekly
0.2
- https://www.stepbystep.asia/categories/%E5%BC%80%E5%8F%91/Linux/
- 2024-10-29
+ https://www.stepbystep.asia/categories/%E5%BC%80%E5%8F%91/Docker/
+ 2024-10-30
weekly
0.2
- https://www.stepbystep.asia/categories/%E5%BC%80%E5%8F%91/Docker/
- 2024-10-29
+ https://www.stepbystep.asia/categories/%E5%BC%80%E5%8F%91/Linux/
+ 2024-10-30
weekly
0.2
- https://www.stepbystep.asia/categories/%E7%BC%96%E7%A8%8B%E8%AF%AD%E8%A8%80/Python/
- 2024-10-29
+ https://www.stepbystep.asia/categories/%E5%AE%89%E5%85%A8/%E6%B1%A1%E7%82%B9%E5%88%86%E6%9E%90/
+ 2024-10-30
weekly
0.2
- https://www.stepbystep.asia/categories/%E8%BD%AF%E8%80%83/
- 2024-10-29
+ https://www.stepbystep.asia/categories/%E7%BC%96%E7%A8%8B%E8%AF%AD%E8%A8%80/Python/
+ 2024-10-30
weekly
0.2
- https://www.stepbystep.asia/categories/%E5%AE%89%E5%85%A8/%E6%B1%A1%E7%82%B9%E5%88%86%E6%9E%90/
- 2024-10-29
+ https://www.stepbystep.asia/categories/%E8%BD%AF%E8%80%83/
+ 2024-10-30
weekly
0.2
https://www.stepbystep.asia/categories/%E5%BC%80%E5%8F%91/%E7%88%AC%E8%99%AB/
- 2024-10-29
+ 2024-10-30
weekly
0.2
https://www.stepbystep.asia/categories/%E8%BD%AF%E8%80%83/%E7%B3%BB%E7%BB%9F%E6%9E%B6%E6%9E%84/
- 2024-10-29
+ 2024-10-30
weekly
0.2
diff --git a/tags/AFL/index.html b/tags/AFL/index.html
index 10a2d69..14adc6c 100644
--- a/tags/AFL/index.html
+++ b/tags/AFL/index.html
@@ -377,7 +377,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git a/tags/C/index.html b/tags/C/index.html
index a56a9fe..dc88adb 100644
--- a/tags/C/index.html
+++ b/tags/C/index.html
@@ -463,7 +463,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git a/tags/Docker/index.html b/tags/Docker/index.html
index f17655c..af1c2a2 100644
--- a/tags/Docker/index.html
+++ b/tags/Docker/index.html
@@ -334,7 +334,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git a/tags/Fuzz/index.html b/tags/Fuzz/index.html
index 149a284..43c6396 100644
--- a/tags/Fuzz/index.html
+++ b/tags/Fuzz/index.html
@@ -678,7 +678,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git a/tags/Hexo/index.html b/tags/Hexo/index.html
index 39f9393..20e4cd3 100644
--- a/tags/Hexo/index.html
+++ b/tags/Hexo/index.html
@@ -334,7 +334,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git a/tags/IntelPin/index.html b/tags/IntelPin/index.html
index a8ba419..9bd9a31 100644
--- a/tags/IntelPin/index.html
+++ b/tags/IntelPin/index.html
@@ -334,7 +334,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git a/tags/LibFuzzer/index.html b/tags/LibFuzzer/index.html
index 9c45f92..b46610f 100644
--- a/tags/LibFuzzer/index.html
+++ b/tags/LibFuzzer/index.html
@@ -377,7 +377,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git a/tags/Linux/index.html b/tags/Linux/index.html
index db77120..09e62dc 100644
--- a/tags/Linux/index.html
+++ b/tags/Linux/index.html
@@ -334,7 +334,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git a/tags/Python/index.html b/tags/Python/index.html
index 379efc8..03f234d 100644
--- a/tags/Python/index.html
+++ b/tags/Python/index.html
@@ -334,7 +334,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git a/tags/blog/index.html b/tags/blog/index.html
index 506fdcf..9548a9e 100644
--- a/tags/blog/index.html
+++ b/tags/blog/index.html
@@ -334,7 +334,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git a/tags/tranquilpeak/index.html b/tags/tranquilpeak/index.html
index 5e4229d..3cfcc17 100644
--- a/tags/tranquilpeak/index.html
+++ b/tags/tranquilpeak/index.html
@@ -334,7 +334,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git a/tags/web/index.html b/tags/web/index.html
index 051dfa4..59a3128 100644
--- a/tags/web/index.html
+++ b/tags/web/index.html
@@ -334,7 +334,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git "a/tags/\345\221\275\344\273\244/index.html" "b/tags/\345\221\275\344\273\244/index.html"
index 45c05fe..b89a2a2 100644
--- "a/tags/\345\221\275\344\273\244/index.html"
+++ "b/tags/\345\221\275\344\273\244/index.html"
@@ -334,7 +334,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git "a/tags/\345\256\211\345\205\250/index.html" "b/tags/\345\256\211\345\205\250/index.html"
index 2a1080e..7ece735 100644
--- "a/tags/\345\256\211\345\205\250/index.html"
+++ "b/tags/\345\256\211\345\205\250/index.html"
@@ -728,7 +728,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git "a/tags/\345\256\211\345\205\250/page/2/index.html" "b/tags/\345\256\211\345\205\250/page/2/index.html"
index 5d6870b..ea51c2a 100644
--- "a/tags/\345\256\211\345\205\250/page/2/index.html"
+++ "b/tags/\345\256\211\345\205\250/page/2/index.html"
@@ -384,7 +384,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git "a/tags/\345\256\271\345\231\250/index.html" "b/tags/\345\256\271\345\231\250/index.html"
index 13fd85a..2ecaaed 100644
--- "a/tags/\345\256\271\345\231\250/index.html"
+++ "b/tags/\345\256\271\345\231\250/index.html"
@@ -334,7 +334,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git "a/tags/\345\267\245\345\205\267/index.html" "b/tags/\345\267\245\345\205\267/index.html"
index 88bbb1b..19d9e0d 100644
--- "a/tags/\345\267\245\345\205\267/index.html"
+++ "b/tags/\345\267\245\345\205\267/index.html"
@@ -728,7 +728,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git "a/tags/\345\267\245\345\205\267/page/2/index.html" "b/tags/\345\267\245\345\205\267/page/2/index.html"
index 850fefa..252c987 100644
--- "a/tags/\345\267\245\345\205\267/page/2/index.html"
+++ "b/tags/\345\267\245\345\205\267/page/2/index.html"
@@ -384,7 +384,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git "a/tags/\345\274\200\345\217\221/index.html" "b/tags/\345\274\200\345\217\221/index.html"
index 80a2c29..149743d 100644
--- "a/tags/\345\274\200\345\217\221/index.html"
+++ "b/tags/\345\274\200\345\217\221/index.html"
@@ -549,7 +549,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git "a/tags/\346\223\215\344\275\234\347\263\273\347\273\237/index.html" "b/tags/\346\223\215\344\275\234\347\263\273\347\273\237/index.html"
index 82adf62..0700966 100644
--- "a/tags/\346\223\215\344\275\234\347\263\273\347\273\237/index.html"
+++ "b/tags/\346\223\215\344\275\234\347\263\273\347\273\237/index.html"
@@ -334,7 +334,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git "a/tags/\346\225\260\346\215\256\345\272\223\350\214\203\345\274\217/index.html" "b/tags/\346\225\260\346\215\256\345\272\223\350\214\203\345\274\217/index.html"
index 6e0fbc7..31d8c4e 100644
--- "a/tags/\346\225\260\346\215\256\345\272\223\350\214\203\345\274\217/index.html"
+++ "b/tags/\346\225\260\346\215\256\345\272\223\350\214\203\345\274\217/index.html"
@@ -377,7 +377,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git "a/tags/\346\225\260\346\215\256\345\272\223\350\256\276\350\256\241/index.html" "b/tags/\346\225\260\346\215\256\345\272\223\350\256\276\350\256\241/index.html"
index 2306faa..e41d35c 100644
--- "a/tags/\346\225\260\346\215\256\345\272\223\350\256\276\350\256\241/index.html"
+++ "b/tags/\346\225\260\346\215\256\345\272\223\350\256\276\350\256\241/index.html"
@@ -377,7 +377,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git "a/tags/\346\261\241\347\202\271\345\210\206\346\236\220/index.html" "b/tags/\346\261\241\347\202\271\345\210\206\346\236\220/index.html"
index 2c73ca8..a7e3ccc 100644
--- "a/tags/\346\261\241\347\202\271\345\210\206\346\236\220/index.html"
+++ "b/tags/\346\261\241\347\202\271\345\210\206\346\236\220/index.html"
@@ -334,7 +334,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git "a/tags/\347\210\254\350\231\253/index.html" "b/tags/\347\210\254\350\231\253/index.html"
index cf5bf42..dcd7600 100644
--- "a/tags/\347\210\254\350\231\253/index.html"
+++ "b/tags/\347\210\254\350\231\253/index.html"
@@ -334,7 +334,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git "a/tags/\347\254\246\345\217\267\346\211\247\350\241\214/index.html" "b/tags/\347\254\246\345\217\267\346\211\247\350\241\214/index.html"
index 423630b..3bae171 100644
--- "a/tags/\347\254\246\345\217\267\346\211\247\350\241\214/index.html"
+++ "b/tags/\347\254\246\345\217\267\346\211\247\350\241\214/index.html"
@@ -420,7 +420,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git "a/tags/\347\263\273\347\273\237\345\210\206\346\236\220\344\270\216\350\256\276\350\256\241/index.html" "b/tags/\347\263\273\347\273\237\345\210\206\346\236\220\344\270\216\350\256\276\350\256\241/index.html"
index c30d424..89cb3ab 100644
--- "a/tags/\347\263\273\347\273\237\345\210\206\346\236\220\344\270\216\350\256\276\350\256\241/index.html"
+++ "b/tags/\347\263\273\347\273\237\345\210\206\346\236\220\344\270\216\350\256\276\350\256\241/index.html"
@@ -334,7 +334,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git "a/tags/\347\273\223\346\236\204\345\214\226\346\226\271\346\263\225/index.html" "b/tags/\347\273\223\346\236\204\345\214\226\346\226\271\346\263\225/index.html"
index fa8209b..78d85b3 100644
--- "a/tags/\347\273\223\346\236\204\345\214\226\346\226\271\346\263\225/index.html"
+++ "b/tags/\347\273\223\346\236\204\345\214\226\346\226\271\346\263\225/index.html"
@@ -334,7 +334,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git "a/tags/\347\274\226\347\250\213/index.html" "b/tags/\347\274\226\347\250\213/index.html"
index bfe6296..10a2b0d 100644
--- "a/tags/\347\274\226\347\250\213/index.html"
+++ "b/tags/\347\274\226\347\250\213/index.html"
@@ -506,7 +506,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git "a/tags/\350\275\257\344\273\266\345\267\245\347\250\213/index.html" "b/tags/\350\275\257\344\273\266\345\267\245\347\250\213/index.html"
index 5a5c591..c13bea5 100644
--- "a/tags/\350\275\257\344\273\266\345\267\245\347\250\213/index.html"
+++ "b/tags/\350\275\257\344\273\266\345\267\245\347\250\213/index.html"
@@ -420,7 +420,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false
diff --git "a/tags/\351\235\242\345\220\221\345\257\271\350\261\241\346\226\271\346\263\225/index.html" "b/tags/\351\235\242\345\220\221\345\257\271\350\261\241\346\226\271\346\263\225/index.html"
index a4f615d..e96e98d 100644
--- "a/tags/\351\235\242\345\220\221\345\257\271\350\261\241\346\226\271\346\263\225/index.html"
+++ "b/tags/\351\235\242\345\220\221\345\257\271\350\261\241\346\226\271\346\263\225/index.html"
@@ -334,7 +334,7 @@ 一瓢清浅
tocSelector: '#post-toc', // 目录容器的 ID 或 class
contentSelector: '.post-content', // 内容容器的 ID 或 class
headingSelector: 'h2,h3,h4', // 包含在目录中的标题级别
- collapseDepth: '4',
+ collapseDepth: '3',
scrollSmooth: true,
activeClass: 'active',
orderedList: false