diff --git a/2014/12/23/my-new-post/index.html b/2014/12/23/my-new-post/index.html index 008fb9508a..56b8db8ad2 100644 --- a/2014/12/23/my-new-post/index.html +++ b/2014/12/23/my-new-post/index.html @@ -428,20 +428,20 @@
- 91 + 92 posts
- 111 + 113 categories
- 168 + 172 tags
@@ -466,7 +466,7 @@
- +
diff --git a/2014/12/24/MFC 模态对话框/index.html b/2014/12/24/MFC 模态对话框/index.html index c051361540..9b81001558 100644 --- a/2014/12/24/MFC 模态对话框/index.html +++ b/2014/12/24/MFC 模态对话框/index.html @@ -301,16 +301,16 @@ @@ -451,20 +451,20 @@
- 91 + 92 posts
- 111 + 113 categories
- 168 + 172 tags
@@ -489,7 +489,7 @@
- +
diff --git a/2014/12/30/Clone-Graph-Part-I/index.html b/2014/12/30/Clone-Graph-Part-I/index.html index 3d3b7ddd01..5fe75eda06 100644 --- a/2014/12/30/Clone-Graph-Part-I/index.html +++ b/2014/12/30/Clone-Graph-Part-I/index.html @@ -35,8 +35,8 @@ - + @@ -300,19 +300,19 @@ @@ -356,8 +356,8 @@ @@ -460,20 +463,20 @@
- 91 + 92 posts
- 111 + 113 categories
- 168 + 172 tags
@@ -498,7 +501,7 @@
- +
diff --git a/2021/03/07/《垃圾回收算法手册读书》笔记之整理算法/index.html b/2021/03/07/《垃圾回收算法手册读书》笔记之整理算法/index.html new file mode 100644 index 0000000000..4fdfa6544b --- /dev/null +++ b/2021/03/07/《垃圾回收算法手册读书》笔记之整理算法/index.html @@ -0,0 +1,776 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 《垃圾回收算法手册读书》笔记之整理算法 | Nicksxs's Blog + + + + + + + + + + + + + + + + +
+
+ +
+
+ + +
+ + + +

Nicksxs's Blog

+ +
+

What hurts more, the pain of hard work or the pain of regret?

+
+ + +
+ + + + + + + + + +
+
+ + +
+ + 0% +
+ + + + +
+
+
+ + +
+ + + + + +
+ + + + + +
+

+ 《垃圾回收算法手册读书》笔记之整理算法 +

+ + +
+ + + + +
+ + +

最近看了下这本垃圾回收算法手册,看到了第三章的标记-整理回收算法,做个简单的读书笔记

+

双指针整理算法

对于一块待整理区域,通过两个指针,free 在区域的起始端,scan 指针在区域的末端,free 指针从前往后知道找到空闲区域,scan 从后往前一直找到存活对象,当 free 指针未与 scan 指针交叉时,会给 scan 位置的对象特定位置标记上 free 的地址,即将要转移的地址,不过这里有个限制,这种整理算法一般会用于对象大小统一的情况,否则 free 指针扫描时还需要匹配scan 指针扫描到的存活对象的大小。

+

Lisp 2 整理算法

需要三次完整遍历堆区域
第一遍是遍历后将计算出所有对象的最终地址(转发地址)
第二遍是使用转发地址更新赋值器线程根以及被标记对象中的引用,该操作将确保它们指向对象的新位置
第三次遍历是relocate最终将存活对象移动到其新的目标位置

+

引线整理算法

这个真的长见识了,

可以看到,原来是 A,B,C 对象引用了 N,这里会在第一次遍历的时候把这种引用反过来,让 N 的对象头部保存下 A 的地址,表示这类引用,然后在遍历到 B 的时候在链起来,到最后就会把所有引用了 N 对象的所有对象通过引线链起来,在第二次遍历的时候就把更新A,B,C 对象引用的 N 地址,并且移动 N 对象

+

单次遍历算法

这个一直提到过位图的实现方式,

可以看到在第一步会先通过位图标记,标记的方式是位图的每一位对应的堆内存的一个字(这里可能指的是 byte 吧),然后将一个存活对象的内存区域的第一个字跟最后一个字标记,这里如果在通过普通的方式就还需要一个地方在存转发地址,但是因为具体的位置可以通过位图算出来,也就不需要额外记录了

+ +
+ + + + + + + + +
+
请我喝杯咖啡
+ + +
+ + + +
+ +
+ + + + +
+ + + + + + +
+ + +
+
+ +
+
+ + + + +
+ + + + + + + + +
+
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/404.html b/404.html index 249268eb12..e68ec2df9f 100644 --- a/404.html +++ b/404.html @@ -320,20 +320,20 @@
- 91 + 92 posts
- 111 + 113 categories
- 168 + 172 tags
@@ -358,7 +358,7 @@
- +
diff --git a/404/index.html b/404/index.html index 9d3c5bb165..c1ff38f778 100644 --- a/404/index.html +++ b/404/index.html @@ -307,20 +307,20 @@
- 91 + 92 posts
- 111 + 113 categories
- 168 + 172 tags
@@ -345,7 +345,7 @@
- +
diff --git a/archives/2014/12/index.html b/archives/2014/12/index.html index fed5afdf76..6c3eb3b328 100644 --- a/archives/2014/12/index.html +++ b/archives/2014/12/index.html @@ -208,7 +208,7 @@
- Good! 91 posts in total. Keep on posting. + Good! 92 posts in total. Keep on posting.
@@ -350,20 +350,20 @@
- 91 + 92 posts
- 111 + 113 categories
- 168 + 172 tags
@@ -388,7 +388,7 @@
- +
diff --git a/archives/2014/index.html b/archives/2014/index.html index b71fcee6a3..7890e6834f 100644 --- a/archives/2014/index.html +++ b/archives/2014/index.html @@ -208,7 +208,7 @@
- Good! 91 posts in total. Keep on posting. + Good! 92 posts in total. Keep on posting.
@@ -350,20 +350,20 @@ @@ -388,7 +388,7 @@
- +
diff --git a/archives/2015/01/index.html b/archives/2015/01/index.html index 995e7852aa..87801cdaee 100644 --- a/archives/2015/01/index.html +++ b/archives/2015/01/index.html @@ -208,7 +208,7 @@
- Good! 91 posts in total. Keep on posting. + Good! 92 posts in total. Keep on posting.
@@ -350,20 +350,20 @@ @@ -388,7 +388,7 @@
- +
diff --git a/archives/2015/03/index.html b/archives/2015/03/index.html index b01a037f22..5bf0ca4761 100644 --- a/archives/2015/03/index.html +++ b/archives/2015/03/index.html @@ -208,7 +208,7 @@
- Good! 91 posts in total. Keep on posting. + Good! 92 posts in total. Keep on posting.
@@ -350,20 +350,20 @@ @@ -388,7 +388,7 @@
- +
diff --git a/archives/2015/04/index.html b/archives/2015/04/index.html index 82f6d3d746..0a4c71c8a2 100644 --- a/archives/2015/04/index.html +++ b/archives/2015/04/index.html @@ -208,7 +208,7 @@
- Good! 91 posts in total. Keep on posting. + Good! 92 posts in total. Keep on posting.
@@ -330,20 +330,20 @@ @@ -368,7 +368,7 @@
- +
diff --git a/archives/2015/06/index.html b/archives/2015/06/index.html index c65f3a9d64..401da8b7ca 100644 --- a/archives/2015/06/index.html +++ b/archives/2015/06/index.html @@ -208,7 +208,7 @@
- Good! 91 posts in total. Keep on posting. + Good! 92 posts in total. Keep on posting.
@@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/archives/2015/index.html b/archives/2015/index.html index 5700bfae9d..ef1b8bed34 100644 --- a/archives/2015/index.html +++ b/archives/2015/index.html @@ -208,7 +208,7 @@
- Good! 91 posts in total. Keep on posting. + Good! 92 posts in total. Keep on posting.
@@ -470,20 +470,20 @@ @@ -508,7 +508,7 @@
- +
diff --git a/archives/2016/07/index.html b/archives/2016/07/index.html index 0c8f2e9e4c..fd850ab646 100644 --- a/archives/2016/07/index.html +++ b/archives/2016/07/index.html @@ -208,7 +208,7 @@
- Good! 91 posts in total. Keep on posting. + Good! 92 posts in total. Keep on posting.
@@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/archives/2016/08/index.html b/archives/2016/08/index.html index 5311ecd23b..8bccf1bdb8 100644 --- a/archives/2016/08/index.html +++ b/archives/2016/08/index.html @@ -208,7 +208,7 @@
- Good! 91 posts in total. Keep on posting. + Good! 92 posts in total. Keep on posting.
@@ -330,20 +330,20 @@ @@ -368,7 +368,7 @@
- +
diff --git a/archives/2016/09/index.html b/archives/2016/09/index.html index 9f9cc3d470..263042af0f 100644 --- a/archives/2016/09/index.html +++ b/archives/2016/09/index.html @@ -208,7 +208,7 @@
- Good! 91 posts in total. Keep on posting. + Good! 92 posts in total. Keep on posting.
@@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/archives/2016/10/index.html b/archives/2016/10/index.html index 5e575eb4c7..fc6550ac96 100644 --- a/archives/2016/10/index.html +++ b/archives/2016/10/index.html @@ -208,7 +208,7 @@
- Good! 91 posts in total. Keep on posting. + Good! 92 posts in total. Keep on posting.
@@ -330,20 +330,20 @@ @@ -368,7 +368,7 @@
- +
diff --git a/archives/2016/11/index.html b/archives/2016/11/index.html index 9e8c9c0b82..681b8c081b 100644 --- a/archives/2016/11/index.html +++ b/archives/2016/11/index.html @@ -208,7 +208,7 @@
- Good! 91 posts in total. Keep on posting. + Good! 92 posts in total. Keep on posting.
@@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/archives/2016/index.html b/archives/2016/index.html index b055039ada..b8817852a3 100644 --- a/archives/2016/index.html +++ b/archives/2016/index.html @@ -208,7 +208,7 @@
- Good! 91 posts in total. Keep on posting. + Good! 92 posts in total. Keep on posting.
@@ -430,20 +430,20 @@ @@ -468,7 +468,7 @@
- +
diff --git a/archives/2017/03/index.html b/archives/2017/03/index.html index d1e84e6032..8d2e84e793 100644 --- a/archives/2017/03/index.html +++ b/archives/2017/03/index.html @@ -208,7 +208,7 @@
- Good! 91 posts in total. Keep on posting. + Good! 92 posts in total. Keep on posting.
@@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/archives/2017/04/index.html b/archives/2017/04/index.html index 3fa24a06db..4993fbb691 100644 --- a/archives/2017/04/index.html +++ b/archives/2017/04/index.html @@ -208,7 +208,7 @@
- Good! 91 posts in total. Keep on posting. + Good! 92 posts in total. Keep on posting.
@@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/archives/2017/05/index.html b/archives/2017/05/index.html index bf63a63cfa..655594ab3f 100644 --- a/archives/2017/05/index.html +++ b/archives/2017/05/index.html @@ -208,7 +208,7 @@
- Good! 91 posts in total. Keep on posting. + Good! 92 posts in total. Keep on posting.
@@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/archives/2017/index.html b/archives/2017/index.html index 13f8420ced..d16a82e3ca 100644 --- a/archives/2017/index.html +++ b/archives/2017/index.html @@ -208,7 +208,7 @@
- Good! 91 posts in total. Keep on posting. + Good! 92 posts in total. Keep on posting.
@@ -350,20 +350,20 @@ @@ -388,7 +388,7 @@
- +
diff --git a/archives/2019/06/index.html b/archives/2019/06/index.html index 10d281b881..1d8a3ad309 100644 --- a/archives/2019/06/index.html +++ b/archives/2019/06/index.html @@ -208,7 +208,7 @@
- Good! 91 posts in total. Keep on posting. + Good! 92 posts in total. Keep on posting.
@@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/archives/2019/09/index.html b/archives/2019/09/index.html index 70f5fe6504..d150ca5999 100644 --- a/archives/2019/09/index.html +++ b/archives/2019/09/index.html @@ -208,7 +208,7 @@
- Good! 91 posts in total. Keep on posting. + Good! 92 posts in total. Keep on posting.
@@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/archives/2019/12/index.html b/archives/2019/12/index.html index 4c96009d22..3eff233dc3 100644 --- a/archives/2019/12/index.html +++ b/archives/2019/12/index.html @@ -208,7 +208,7 @@
- Good! 91 posts in total. Keep on posting. + Good! 92 posts in total. Keep on posting.
@@ -390,20 +390,20 @@ @@ -428,7 +428,7 @@
- +
diff --git a/archives/2019/index.html b/archives/2019/index.html index d2638d2229..f77e06002c 100644 --- a/archives/2019/index.html +++ b/archives/2019/index.html @@ -208,7 +208,7 @@
- Good! 91 posts in total. Keep on posting. + Good! 92 posts in total. Keep on posting.
@@ -430,20 +430,20 @@ @@ -468,7 +468,7 @@
- +
diff --git a/archives/2020/01/index.html b/archives/2020/01/index.html index 20c466cd35..80bb32380b 100644 --- a/archives/2020/01/index.html +++ b/archives/2020/01/index.html @@ -208,7 +208,7 @@
- Good! 91 posts in total. Keep on posting. + Good! 92 posts in total. Keep on posting.
@@ -390,20 +390,20 @@ @@ -428,7 +428,7 @@
- +
diff --git a/archives/2020/02/index.html b/archives/2020/02/index.html index a3e8396db0..65703ba6d7 100644 --- a/archives/2020/02/index.html +++ b/archives/2020/02/index.html @@ -208,7 +208,7 @@
- Good! 91 posts in total. Keep on posting. + Good! 92 posts in total. Keep on posting.
@@ -370,20 +370,20 @@ @@ -408,7 +408,7 @@
- +
diff --git a/archives/2020/03/index.html b/archives/2020/03/index.html index a6830242b9..afc80a430f 100644 --- a/archives/2020/03/index.html +++ b/archives/2020/03/index.html @@ -208,7 +208,7 @@
- Good! 91 posts in total. Keep on posting. + Good! 92 posts in total. Keep on posting.
@@ -390,20 +390,20 @@ @@ -428,7 +428,7 @@
- +
diff --git a/archives/2020/04/index.html b/archives/2020/04/index.html index 145c34891b..a48e0d45be 100644 --- a/archives/2020/04/index.html +++ b/archives/2020/04/index.html @@ -208,7 +208,7 @@
- Good! 91 posts in total. Keep on posting. + Good! 92 posts in total. Keep on posting.
@@ -370,20 +370,20 @@ @@ -408,7 +408,7 @@
- +
diff --git a/archives/2020/05/index.html b/archives/2020/05/index.html index 679ccee91e..48925ed9cd 100644 --- a/archives/2020/05/index.html +++ b/archives/2020/05/index.html @@ -208,7 +208,7 @@
- Good! 91 posts in total. Keep on posting. + Good! 92 posts in total. Keep on posting.
@@ -390,20 +390,20 @@ @@ -428,7 +428,7 @@
- +
diff --git a/archives/2020/06/index.html b/archives/2020/06/index.html index a97b391827..99b8d1bd6d 100644 --- a/archives/2020/06/index.html +++ b/archives/2020/06/index.html @@ -208,7 +208,7 @@
- Good! 91 posts in total. Keep on posting. + Good! 92 posts in total. Keep on posting.
@@ -370,20 +370,20 @@ @@ -408,7 +408,7 @@
- +
diff --git a/archives/2020/07/index.html b/archives/2020/07/index.html index fee627b190..c07e00ca4c 100644 --- a/archives/2020/07/index.html +++ b/archives/2020/07/index.html @@ -208,7 +208,7 @@
- Good! 91 posts in total. Keep on posting. + Good! 92 posts in total. Keep on posting.
@@ -370,20 +370,20 @@ @@ -408,7 +408,7 @@
- +
diff --git a/archives/2020/08/index.html b/archives/2020/08/index.html index d1064d4080..c77973c14d 100644 --- a/archives/2020/08/index.html +++ b/archives/2020/08/index.html @@ -208,7 +208,7 @@
- Good! 91 posts in total. Keep on posting. + Good! 92 posts in total. Keep on posting.
@@ -390,20 +390,20 @@ @@ -428,7 +428,7 @@
- +
diff --git a/archives/2020/09/index.html b/archives/2020/09/index.html index 83dbe6d6ad..629519c819 100644 --- a/archives/2020/09/index.html +++ b/archives/2020/09/index.html @@ -208,7 +208,7 @@
- Good! 91 posts in total. Keep on posting. + Good! 92 posts in total. Keep on posting.
@@ -370,20 +370,20 @@ @@ -408,7 +408,7 @@
- +
diff --git a/archives/2020/10/index.html b/archives/2020/10/index.html index dcd7bea49a..95767ded34 100644 --- a/archives/2020/10/index.html +++ b/archives/2020/10/index.html @@ -208,7 +208,7 @@
- Good! 91 posts in total. Keep on posting. + Good! 92 posts in total. Keep on posting.
@@ -370,20 +370,20 @@ @@ -408,7 +408,7 @@
- +
diff --git a/archives/2020/11/index.html b/archives/2020/11/index.html index a0d08fa0ea..a1c5745415 100644 --- a/archives/2020/11/index.html +++ b/archives/2020/11/index.html @@ -208,7 +208,7 @@
- Good! 91 posts in total. Keep on posting. + Good! 92 posts in total. Keep on posting.
@@ -390,20 +390,20 @@ @@ -428,7 +428,7 @@
- +
diff --git a/archives/2020/12/index.html b/archives/2020/12/index.html index 6774ad68f2..7115339e74 100644 --- a/archives/2020/12/index.html +++ b/archives/2020/12/index.html @@ -208,7 +208,7 @@
- Good! 91 posts in total. Keep on posting. + Good! 92 posts in total. Keep on posting.
@@ -370,20 +370,20 @@ @@ -408,7 +408,7 @@
- +
diff --git a/archives/2020/index.html b/archives/2020/index.html index e54097892f..e8a5becb6b 100644 --- a/archives/2020/index.html +++ b/archives/2020/index.html @@ -208,7 +208,7 @@
- Good! 91 posts in total. Keep on posting. + Good! 92 posts in total. Keep on posting.
@@ -493,20 +493,20 @@ @@ -531,7 +531,7 @@
- +
diff --git a/archives/2020/page/2/index.html b/archives/2020/page/2/index.html index a97ede2ec2..e5b0242b76 100644 --- a/archives/2020/page/2/index.html +++ b/archives/2020/page/2/index.html @@ -208,7 +208,7 @@
- Good! 91 posts in total. Keep on posting. + Good! 92 posts in total. Keep on posting.
@@ -493,20 +493,20 @@ @@ -531,7 +531,7 @@
- +
diff --git a/archives/2020/page/3/index.html b/archives/2020/page/3/index.html index ff57aacf7c..a914429691 100644 --- a/archives/2020/page/3/index.html +++ b/archives/2020/page/3/index.html @@ -208,7 +208,7 @@
- Good! 91 posts in total. Keep on posting. + Good! 92 posts in total. Keep on posting.
@@ -493,20 +493,20 @@ @@ -531,7 +531,7 @@
- +
diff --git a/archives/2020/page/4/index.html b/archives/2020/page/4/index.html index 4ca5f1d97b..aa2be5a7eb 100644 --- a/archives/2020/page/4/index.html +++ b/archives/2020/page/4/index.html @@ -208,7 +208,7 @@
- Good! 91 posts in total. Keep on posting. + Good! 92 posts in total. Keep on posting.
@@ -493,20 +493,20 @@ @@ -531,7 +531,7 @@
- +
diff --git a/archives/2020/page/5/index.html b/archives/2020/page/5/index.html index f963163c4d..2be6cca1d4 100644 --- a/archives/2020/page/5/index.html +++ b/archives/2020/page/5/index.html @@ -208,7 +208,7 @@
- Good! 91 posts in total. Keep on posting. + Good! 92 posts in total. Keep on posting.
@@ -493,20 +493,20 @@ @@ -531,7 +531,7 @@
- +
diff --git a/archives/2020/page/6/index.html b/archives/2020/page/6/index.html index c8fc2aa727..6cdb3ef199 100644 --- a/archives/2020/page/6/index.html +++ b/archives/2020/page/6/index.html @@ -208,7 +208,7 @@
- Good! 91 posts in total. Keep on posting. + Good! 92 posts in total. Keep on posting.
@@ -353,20 +353,20 @@ @@ -391,7 +391,7 @@
- +
diff --git a/archives/2021/01/index.html b/archives/2021/01/index.html index ea02c74123..f545fc945c 100644 --- a/archives/2021/01/index.html +++ b/archives/2021/01/index.html @@ -208,7 +208,7 @@
- Good! 91 posts in total. Keep on posting. + Good! 92 posts in total. Keep on posting.
@@ -390,20 +390,20 @@ @@ -428,7 +428,7 @@
- +
diff --git a/archives/2021/02/index.html b/archives/2021/02/index.html index d8a682ecdc..189aa320fc 100644 --- a/archives/2021/02/index.html +++ b/archives/2021/02/index.html @@ -208,7 +208,7 @@
- Good! 91 posts in total. Keep on posting. + Good! 92 posts in total. Keep on posting.
@@ -370,20 +370,20 @@ @@ -408,7 +408,7 @@
- +
diff --git a/archives/2021/03/index.html b/archives/2021/03/index.html new file mode 100644 index 0000000000..89a1cdd2ac --- /dev/null +++ b/archives/2021/03/index.html @@ -0,0 +1,594 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Archive | Nicksxs's Blog + + + + + + + + + + + + + + + + +
+
+ +
+
+ + +
+ + + +

Nicksxs's Blog

+ +
+

What hurts more, the pain of hard work or the pain of regret?

+
+ + +
+ + + + + + + + + +
+
+ + +
+ + 0% +
+ + + + +
+
+
+ + +
+ + + + + +
+
+
+ + Good! 92 posts in total. Keep on posting. +
+ + +
+ 2021 +
+ + + + +
+
+ + + + + + + + +
+ + + + +
+ + + + + + + + +
+
+ +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/archives/2021/index.html b/archives/2021/index.html index 88b1f1f0b1..5562063296 100644 --- a/archives/2021/index.html +++ b/archives/2021/index.html @@ -208,7 +208,7 @@
- Good! 91 posts in total. Keep on posting. + Good! 92 posts in total. Keep on posting.
@@ -216,6 +216,26 @@ 2021
+ +
@@ -470,20 +490,20 @@ @@ -508,7 +528,7 @@
- +
diff --git a/archives/index.html b/archives/index.html index 9483fe9d3a..d064b02ca0 100644 --- a/archives/index.html +++ b/archives/index.html @@ -208,7 +208,7 @@
- Good! 91 posts in total. Keep on posting. + Good! 92 posts in total. Keep on posting.
@@ -216,6 +216,26 @@ 2021
+ +
@@ -395,29 +415,6 @@
-
- 2020 -
- -
@@ -496,20 +493,20 @@ @@ -534,7 +531,7 @@
- +
diff --git a/archives/page/10/index.html b/archives/page/10/index.html index d85c311333..3ba93d61a9 100644 --- a/archives/page/10/index.html +++ b/archives/page/10/index.html @@ -208,7 +208,7 @@
- Good! 91 posts in total. Keep on posting. + Good! 92 posts in total. Keep on posting.
@@ -216,6 +216,26 @@ 2014
+ +
@@ -313,20 +333,20 @@ @@ -351,7 +371,7 @@
- +
diff --git a/archives/page/2/index.html b/archives/page/2/index.html index 0ac6bf2ce6..ff3ecf2d92 100644 --- a/archives/page/2/index.html +++ b/archives/page/2/index.html @@ -208,7 +208,7 @@
- Good! 91 posts in total. Keep on posting. + Good! 92 posts in total. Keep on posting.
@@ -216,6 +216,26 @@ 2020
+ +
@@ -396,26 +416,6 @@
- -
@@ -493,20 +493,20 @@ @@ -531,7 +531,7 @@
- +
diff --git a/archives/page/3/index.html b/archives/page/3/index.html index 86ae5c1acf..eabb98cb93 100644 --- a/archives/page/3/index.html +++ b/archives/page/3/index.html @@ -208,7 +208,7 @@
- Good! 91 posts in total. Keep on posting. + Good! 92 posts in total. Keep on posting.
@@ -216,6 +216,26 @@ 2020
+ +
@@ -396,26 +416,6 @@
- -
@@ -493,20 +493,20 @@ @@ -531,7 +531,7 @@
- +
diff --git a/archives/page/4/index.html b/archives/page/4/index.html index 188cf13583..12132df3a8 100644 --- a/archives/page/4/index.html +++ b/archives/page/4/index.html @@ -208,7 +208,7 @@
- Good! 91 posts in total. Keep on posting. + Good! 92 posts in total. Keep on posting.
@@ -216,6 +216,26 @@ 2020
+ +
@@ -396,26 +416,6 @@
- -
@@ -493,20 +493,20 @@ @@ -531,7 +531,7 @@
- +
diff --git a/archives/page/5/index.html b/archives/page/5/index.html index 7245577c15..3fc4321ac4 100644 --- a/archives/page/5/index.html +++ b/archives/page/5/index.html @@ -208,7 +208,7 @@
- Good! 91 posts in total. Keep on posting. + Good! 92 posts in total. Keep on posting.
@@ -216,6 +216,26 @@ 2020
+ +
@@ -396,26 +416,6 @@
- -
@@ -493,20 +493,20 @@ @@ -531,7 +531,7 @@
- +
diff --git a/archives/page/6/index.html b/archives/page/6/index.html index 23d4b12838..9ea84cc516 100644 --- a/archives/page/6/index.html +++ b/archives/page/6/index.html @@ -208,7 +208,7 @@
- Good! 91 posts in total. Keep on posting. + Good! 92 posts in total. Keep on posting.
@@ -216,6 +216,26 @@ 2020
+ +
@@ -396,26 +416,6 @@
- -
@@ -493,20 +493,20 @@ @@ -531,7 +531,7 @@
- +
diff --git a/archives/page/7/index.html b/archives/page/7/index.html index 8dfae8c0ce..0d3f4f9e3c 100644 --- a/archives/page/7/index.html +++ b/archives/page/7/index.html @@ -208,7 +208,7 @@
- Good! 91 posts in total. Keep on posting. + Good! 92 posts in total. Keep on posting.
@@ -216,6 +216,26 @@ 2020
+ +
@@ -398,29 +418,6 @@
-
- 2017 -
- -
@@ -499,20 +496,20 @@ @@ -537,7 +534,7 @@
- +
diff --git a/archives/page/8/index.html b/archives/page/8/index.html index 9f8097c4f1..79c1208548 100644 --- a/archives/page/8/index.html +++ b/archives/page/8/index.html @@ -208,7 +208,7 @@
- Good! 91 posts in total. Keep on posting. + Good! 92 posts in total. Keep on posting.
@@ -216,6 +216,26 @@ 2017
+ +
@@ -398,29 +418,6 @@
-
- 2015 -
- -
@@ -499,20 +496,20 @@ @@ -537,7 +534,7 @@
- +
diff --git a/archives/page/9/index.html b/archives/page/9/index.html index a5f4009238..c367812efa 100644 --- a/archives/page/9/index.html +++ b/archives/page/9/index.html @@ -208,7 +208,7 @@
- Good! 91 posts in total. Keep on posting. + Good! 92 posts in total. Keep on posting.
@@ -216,6 +216,26 @@ 2015
+ +
@@ -399,26 +419,6 @@
- -
@@ -496,20 +496,20 @@ @@ -534,7 +534,7 @@
- +
diff --git a/atom.xml b/atom.xml index a4412adfd8..7a45c0d948 100644 --- a/atom.xml +++ b/atom.xml @@ -6,7 +6,7 @@ - 2021-02-28T13:56:42.363Z + 2021-03-07T12:37:06.387Z https://nicksxs.me/ @@ -16,6 +16,46 @@ Hexo + + 《垃圾回收算法手册读书》笔记之整理算法 + + https://nicksxs.me/2021/03/07/%E3%80%8A%E5%9E%83%E5%9C%BE%E5%9B%9E%E6%94%B6%E7%AE%97%E6%B3%95%E6%89%8B%E5%86%8C%E8%AF%BB%E4%B9%A6%E3%80%8B%E7%AC%94%E8%AE%B0%E4%B9%8B%E6%95%B4%E7%90%86%E7%AE%97%E6%B3%95/ + 2021-03-07T12:37:06.000Z + 2021-03-07T12:37:06.387Z + + + + + + + + <p>最近看了下这本垃圾回收算法手册,看到了第三章的标记-整理回收算法,做个简单的读书笔记</p> +<h3 id="双指针整理算法"><a href="#双指针整理算法" class="headerlink" + + + + + + + + + + + + + + + + + + + + + + + + + 闲聊下乘公交的用户体验 @@ -803,47 +843,4 @@ - - 在老丈人家的小工记五 - - https://nicksxs.me/2020/10/18/%E5%9C%A8%E8%80%81%E4%B8%88%E4%BA%BA%E5%AE%B6%E7%9A%84%E5%B0%8F%E5%B7%A5%E8%AE%B0%E4%BA%94/ - 2020-10-18T15:14:52.000Z - 2020-10-18T15:15:50.000Z - - - - - - - - <p>终于回忆起来了,年纪大了写这种东西真的要立马写,不然很容易想不起来,那天应该是 9 月 12 日,也就是上周六,因为我爸也去了,而且娘亲(丈母娘,LD - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/baidu_verify_Gl8jtoDV4z.html b/baidu_verify_Gl8jtoDV4z.html index 7fae520b23..761bc3d180 100644 --- a/baidu_verify_Gl8jtoDV4z.html +++ b/baidu_verify_Gl8jtoDV4z.html @@ -309,20 +309,20 @@ @@ -347,7 +347,7 @@
- +
diff --git a/baidusitemap.xml b/baidusitemap.xml index 45bf1d128e..5a64ad5459 100644 --- a/baidusitemap.xml +++ b/baidusitemap.xml @@ -1,6 +1,9 @@ + https://nicksxs.me/2021/03/07/%E3%80%8A%E5%9E%83%E5%9C%BE%E5%9B%9E%E6%94%B6%E7%AE%97%E6%B3%95%E6%89%8B%E5%86%8C%E8%AF%BB%E4%B9%A6%E3%80%8B%E7%AC%94%E8%AE%B0%E4%B9%8B%E6%95%B4%E7%90%86%E7%AE%97%E6%B3%95/ + 2021-03-07 + https://nicksxs.me/2021/02/28/%E9%97%B2%E8%81%8A%E4%B8%8B%E4%B9%98%E5%85%AC%E4%BA%A4%E7%9A%84%E7%94%A8%E6%88%B7%E4%BD%93%E9%AA%8C/ 2021-02-28 @@ -181,89 +184,89 @@ https://nicksxs.me/2020/01/19/redis%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84%E4%BB%8B%E7%BB%8D%E5%9B%9B/ 2020-01-18 - https://nicksxs.me/2019/12/10/Redis-Part-1/ + https://nicksxs.me/2019/12/26/redis%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84%E4%BB%8B%E7%BB%8D/ 2020-01-12 - https://nicksxs.me/2016/10/11/minimum-size-subarray-sum-209/ + https://nicksxs.me/2016/08/14/34-Search-for-a-Range/ 2020-01-12 - https://nicksxs.me/2015/03/11/Reverse-Bits/ + https://nicksxs.me/2015/04/14/Add-Two-Number/ 2020-01-12 - https://nicksxs.me/2017/05/09/ambari-summary/ + https://nicksxs.me/2014/12/24/MFC%20%E6%A8%A1%E6%80%81%E5%AF%B9%E8%AF%9D%E6%A1%86/ 2020-01-12 - https://nicksxs.me/2015/01/14/Two-Sum/ + https://nicksxs.me/2015/03/11/Reverse-Bits/ + 2020-01-12 + + https://nicksxs.me/2020/01/04/redis%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84%E4%BB%8B%E7%BB%8D%E4%BA%8C/ 2020-01-12 https://nicksxs.me/2015/03/13/Reverse-Integer/ 2020-01-12 - https://nicksxs.me/2016/09/29/binary-watch/ + https://nicksxs.me/2020/01/10/redis%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84%E4%BB%8B%E7%BB%8D%E4%B8%89/ 2020-01-12 - https://nicksxs.me/2016/08/14/docker-mysql-cluster/ + https://nicksxs.me/2015/01/14/Two-Sum/ 2020-01-12 https://nicksxs.me/2016/11/10/php-abstract-class-and-interface/ 2020-01-12 - https://nicksxs.me/2019/06/18/openresty/ + https://nicksxs.me/2017/05/09/ambari-summary/ 2020-01-12 - https://nicksxs.me/2020/01/10/redis%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84%E4%BB%8B%E7%BB%8D%E4%B8%89/ + https://nicksxs.me/2019/06/18/openresty/ 2020-01-12 - https://nicksxs.me/2020/01/04/redis%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84%E4%BB%8B%E7%BB%8D%E4%BA%8C/ + https://nicksxs.me/2016/09/29/binary-watch/ 2020-01-12 - https://nicksxs.me/2015/04/14/Add-Two-Number/ + https://nicksxs.me/2019/12/10/Redis-Part-1/ 2020-01-12 - https://nicksxs.me/2014/12/24/MFC%20%E6%A8%A1%E6%80%81%E5%AF%B9%E8%AF%9D%E6%A1%86/ + https://nicksxs.me/2016/08/14/docker-mysql-cluster/ 2020-01-12 - https://nicksxs.me/2016/08/14/34-Search-for-a-Range/ + https://nicksxs.me/2016/10/11/minimum-size-subarray-sum-209/ 2020-01-12 - https://nicksxs.me/2019/12/26/redis%E6%95%B0%E6%8D%AE%E7%BB%93%E6%9E%84%E4%BB%8B%E7%BB%8D/ + https://nicksxs.me/2017/03/28/spark-little-tips/ 2020-01-12 https://nicksxs.me/2014/12/23/my-new-post/ 2020-01-12 - https://nicksxs.me/2019/09/23/AbstractQueuedSynchronizer/ - 2020-01-12 - - https://nicksxs.me/2016/07/13/swoole-websocket-test/ + https://nicksxs.me/2015/06/22/invert-binary-tree/ 2020-01-12 https://nicksxs.me/2016/10/12/summary-ranges-228/ 2020-01-12 - https://nicksxs.me/2017/03/28/spark-little-tips/ + https://nicksxs.me/2015/01/16/pcre-intro-and-a-simple-package/ 2020-01-12 https://nicksxs.me/2017/04/25/rabbitmq-tips/ 2020-01-12 - https://nicksxs.me/2015/01/16/pcre-intro-and-a-simple-package/ - 2020-01-12 - - https://nicksxs.me/2014/12/30/Clone-Graph-Part-I/ + https://nicksxs.me/2019/09/23/AbstractQueuedSynchronizer/ 2020-01-12 - https://nicksxs.me/2015/06/22/invert-binary-tree/ + https://nicksxs.me/2015/03/11/Number-Of-1-Bits/ 2020-01-12 https://nicksxs.me/2015/01/04/Path-Sum/ 2020-01-12 - https://nicksxs.me/2015/03/11/Number-Of-1-Bits/ + https://nicksxs.me/2016/07/13/swoole-websocket-test/ 2020-01-12 https://nicksxs.me/2015/04/15/Leetcode-No-3/ 2020-01-12 + + https://nicksxs.me/2014/12/30/Clone-Graph-Part-I/ + 2020-01-12 https://nicksxs.me/2019/12/21/%E8%81%8A%E8%81%8AJava%E4%B8%AD%E7%9A%84%E5%8D%95%E4%BE%8B%E6%A8%A1%E5%BC%8F/ 2019-12-22 diff --git a/categories/Binary-Tree/index.html b/categories/Binary-Tree/index.html index 6e0c5c1d69..d995855dd8 100644 --- a/categories/Binary-Tree/index.html +++ b/categories/Binary-Tree/index.html @@ -353,20 +353,20 @@ @@ -391,7 +391,7 @@
- +
diff --git a/categories/C/Mysql/index.html b/categories/C/Mysql/index.html index 1da03a3c13..f7065da48e 100644 --- a/categories/C/Mysql/index.html +++ b/categories/C/Mysql/index.html @@ -370,20 +370,20 @@ @@ -408,7 +408,7 @@
- +
diff --git a/categories/C/Redis/index.html b/categories/C/Redis/index.html index a604651904..9591d21629 100644 --- a/categories/C/Redis/index.html +++ b/categories/C/Redis/index.html @@ -473,20 +473,20 @@ @@ -511,7 +511,7 @@
- +
diff --git a/categories/C/index.html b/categories/C/index.html index 0279f6514f..0ff452fdee 100644 --- a/categories/C/index.html +++ b/categories/C/index.html @@ -493,20 +493,20 @@ @@ -531,7 +531,7 @@
- +
diff --git a/categories/C/page/2/index.html b/categories/C/page/2/index.html index 327c2a578d..2df59b3d28 100644 --- a/categories/C/page/2/index.html +++ b/categories/C/page/2/index.html @@ -356,20 +356,20 @@ @@ -394,7 +394,7 @@
- +
diff --git a/categories/Dubbo-RPC-SPI/index.html b/categories/Dubbo-RPC-SPI/index.html index 6d34cb2580..cbc5ecca64 100644 --- a/categories/Dubbo-RPC-SPI/index.html +++ b/categories/Dubbo-RPC-SPI/index.html @@ -330,20 +330,20 @@ @@ -368,7 +368,7 @@
- +
diff --git a/categories/Dubbo-RPC/index.html b/categories/Dubbo-RPC/index.html index 4d1a2e260f..df7f888dd4 100644 --- a/categories/Dubbo-RPC/index.html +++ b/categories/Dubbo-RPC/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/categories/Dubbo/SPI/Adaptive/index.html b/categories/Dubbo/SPI/Adaptive/index.html index 1f1887c54a..bfdf342abd 100644 --- a/categories/Dubbo/SPI/Adaptive/index.html +++ b/categories/Dubbo/SPI/Adaptive/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/categories/Dubbo/SPI/index.html b/categories/Dubbo/SPI/index.html index 5af8a135dd..b9a15a009a 100644 --- a/categories/Dubbo/SPI/index.html +++ b/categories/Dubbo/SPI/index.html @@ -330,20 +330,20 @@ @@ -368,7 +368,7 @@
- +
diff --git a/categories/Dubbo/index.html b/categories/Dubbo/index.html index df86e172a9..b0283dfb38 100644 --- a/categories/Dubbo/index.html +++ b/categories/Dubbo/index.html @@ -350,20 +350,20 @@ @@ -388,7 +388,7 @@
- +
diff --git a/categories/Dubbo/容错机制/index.html b/categories/Dubbo/容错机制/index.html index 10b50dfcfa..3c3fcb3c82 100644 --- a/categories/Dubbo/容错机制/index.html +++ b/categories/Dubbo/容错机制/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/categories/Filter/index.html b/categories/Filter/index.html index 4cbb9b9798..bee7f851ef 100644 --- a/categories/Filter/index.html +++ b/categories/Filter/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/categories/Interceptor-AOP/index.html b/categories/Interceptor-AOP/index.html index 0d681ec243..5341c455fc 100644 --- a/categories/Interceptor-AOP/index.html +++ b/categories/Interceptor-AOP/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/categories/Java/Apollo/index.html b/categories/Java/Apollo/index.html index e0f627c8d7..761b988322 100644 --- a/categories/Java/Apollo/index.html +++ b/categories/Java/Apollo/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/categories/Java/Apollo/value/index.html b/categories/Java/Apollo/value/index.html index e3c08ab0bb..4e6932fda4 100644 --- a/categories/Java/Apollo/value/index.html +++ b/categories/Java/Apollo/value/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/categories/Java/Design-Patterns/index.html b/categories/Java/Design-Patterns/index.html index 413499c7e5..a8c16f43a6 100644 --- a/categories/Java/Design-Patterns/index.html +++ b/categories/Java/Design-Patterns/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/categories/Java/GC/index.html b/categories/Java/GC/index.html index 6780b5293f..4f7083cc0b 100644 --- a/categories/Java/GC/index.html +++ b/categories/Java/GC/index.html @@ -333,20 +333,20 @@ @@ -371,7 +371,7 @@
- +
diff --git a/categories/Java/GC/jvm/index.html b/categories/Java/GC/jvm/index.html new file mode 100644 index 0000000000..19d9760ba6 --- /dev/null +++ b/categories/Java/GC/jvm/index.html @@ -0,0 +1,604 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Category: jvm | Nicksxs's Blog + + + + + + + + + + + + + + + + +
+
+ +
+
+ + +
+ + + +

Nicksxs's Blog

+ +
+

What hurts more, the pain of hard work or the pain of regret?

+
+ + +
+ + + + + + + + + +
+
+ + +
+ + 0% +
+ + + + +
+
+
+ + +
+ + + + + +
+
+
+

jvm + Category +

+
+ + +
+ 2021 +
+ + + +
+
+ + + + + + + + +
+ + + + +
+ + + + + + + + +
+
+ +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/categories/Java/JVM/index.html b/categories/Java/JVM/index.html index 7e16d2a097..096ac58cc3 100644 --- a/categories/Java/JVM/index.html +++ b/categories/Java/JVM/index.html @@ -333,20 +333,20 @@ @@ -371,7 +371,7 @@
- +
diff --git a/categories/Java/Maven/index.html b/categories/Java/Maven/index.html index 3a8a466e23..1d3c764fde 100644 --- a/categories/Java/Maven/index.html +++ b/categories/Java/Maven/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/categories/Java/Mybatis/index.html b/categories/Java/Mybatis/index.html index afd6ffcc3a..49d0afa7b9 100644 --- a/categories/Java/Mybatis/index.html +++ b/categories/Java/Mybatis/index.html @@ -330,20 +330,20 @@ @@ -368,7 +368,7 @@
- +
diff --git a/categories/Java/Singleton/index.html b/categories/Java/Singleton/index.html index 5585f3e0bf..0a69b809f8 100644 --- a/categories/Java/Singleton/index.html +++ b/categories/Java/Singleton/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/categories/Java/index.html b/categories/Java/index.html index a57aa40b64..d825cb1b91 100644 --- a/categories/Java/index.html +++ b/categories/Java/index.html @@ -29,7 +29,7 @@ - + @@ -40,7 +40,7 @@ - + - Category: java | Nicksxs's Blog + Category: Java | Nicksxs's Blog - - - - - - -ss="post-meta-item" id="busuanzi_container_site_uv" style="display: none;"> - - - - - - - -
- - - - - - - - - -
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Category: docker | Nicksxs's Blog + Category: Docker | Nicksxs's Blog - - - - - - -ocity/velocity.min.js"> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Tag: GC | Nicksxs's Blog + Tag: gc | Nicksxs's Blog diff --git a/tags/Garbage-First-Collector/index.html b/tags/Garbage-First-Collector/index.html index ce80040227..c96c8113e6 100644 --- a/tags/Garbage-First-Collector/index.html +++ b/tags/Garbage-First-Collector/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/Gogs/index.html b/tags/Gogs/index.html index fbca700d71..ac2cfd68b3 100644 --- a/tags/Gogs/index.html +++ b/tags/Gogs/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/Homebrew/index.html b/tags/Homebrew/index.html index f4122c295f..acab2ae781 100644 --- a/tags/Homebrew/index.html +++ b/tags/Homebrew/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/Inorder-Traversal/index.html b/tags/Inorder-Traversal/index.html index 1a759b3672..19543f4d69 100644 --- a/tags/Inorder-Traversal/index.html +++ b/tags/Inorder-Traversal/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/Interceptor/index.html b/tags/Interceptor/index.html index aad77a7f70..e9d754d389 100644 --- a/tags/Interceptor/index.html +++ b/tags/Interceptor/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/JMap/index.html b/tags/JMap/index.html index bb35cd5b1f..32e56576d1 100644 --- a/tags/JMap/index.html +++ b/tags/JMap/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/JPS/index.html b/tags/JPS/index.html index 61ec855e8f..8b6709dcd4 100644 --- a/tags/JPS/index.html +++ b/tags/JPS/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/JStack/index.html b/tags/JStack/index.html index 56f60f5851..df3202be2c 100644 --- a/tags/JStack/index.html +++ b/tags/JStack/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/JVM/index.html b/tags/JVM/index.html index 31c09ee094..8c822dec92 100644 --- a/tags/JVM/index.html +++ b/tags/JVM/index.html @@ -29,7 +29,7 @@ - + @@ -40,7 +40,7 @@ - + - Tag: JVM | Nicksxs's Blog + Tag: jvm | Nicksxs's Blog + + + + + +ty: true, ignores : [uri => uri.includes('#'),uri => uri === 'https://nicksxs.me/tags/JVM/',] }); }); diff --git a/tags/Mac/index.html b/tags/Mac/index.html index 3255a7817c..7f2521ed33 100644 --- a/tags/Mac/index.html +++ b/tags/Mac/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/Maven/index.html b/tags/Maven/index.html index 947c96dc9d..c90cc3c124 100644 --- a/tags/Maven/index.html +++ b/tags/Maven/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/Mybatis/index.html b/tags/Mybatis/index.html index ed4f147808..30d8f5ca89 100644 --- a/tags/Mybatis/index.html +++ b/tags/Mybatis/index.html @@ -330,20 +330,20 @@ @@ -368,7 +368,7 @@
- +
diff --git a/tags/NameServer/index.html b/tags/NameServer/index.html index c2fa40b19c..0c8d35b382 100644 --- a/tags/NameServer/index.html +++ b/tags/NameServer/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/Preorder-Traversal/index.html b/tags/Preorder-Traversal/index.html index 811fdfe2dd..884fe7196f 100644 --- a/tags/Preorder-Traversal/index.html +++ b/tags/Preorder-Traversal/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/RPC/index.html b/tags/RPC/index.html index c802253608..ce484f7d03 100644 --- a/tags/RPC/index.html +++ b/tags/RPC/index.html @@ -350,20 +350,20 @@ @@ -388,7 +388,7 @@
- +
diff --git a/tags/Redis/index.html b/tags/Redis/index.html index 5bf9c6f539..878c5028d1 100644 --- a/tags/Redis/index.html +++ b/tags/Redis/index.html @@ -29,7 +29,7 @@ - + @@ -40,7 +40,7 @@ - + - Tag: redis | Nicksxs's Blog + Tag: Redis | Nicksxs's Blog + + + + + + +; + }); + } + + let { app_id, app_key, server_url } = {"enable":true,"app_id":"ysza182Vghlqjdt7QiwGLLJy-gzGzoHsz","app_key":"s9GDqbn7gnGGkusf66YRVccw","server_url":"https://leancloud.cn","security":true}; + function fetchData(api_server) { + var Counter = (method, url, data) => { + return fetch(`${api_server}/1.1${url}`, { + method, + headers: { + 'X-LC-Id' : app_id, + 'X-LC-Key' : app_key, + 'Content-Type': 'application/json', + }, + body: JSON.stringify(data) + }); + }; + if (CONFIG.page.isPost) { + if (CONFIG.hostname !== location.hostname) return; + addCount(Counter); + } else if (document.querySelectorAll('.post-title-link').length >= 1) { + showTime(Counter); + } + } + + let api_server = app_id.slice(-9) !== '-MdYXbMMI' ? server_url : `https://${app_id.slice(0, 8).toLowerCase()}.api.lncldglobal.com`; + + if (api_server) { + fetchData(api_server); + } else { + fetch('https://app-router.leancloud.cn/2/route?appId=' + app_id) + .then(response => response.json()) + .then(({ api_server }) => { + fetchData('https://' + api_server); + }); + } + })(); + + + +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - Tag: java | Nicksxs's Blog + Tag: Java | Nicksxs's Blog diff --git a/tags/leetcode-155/index.html b/tags/leetcode-155/index.html index 141909e52f..82797f1468 100644 --- a/tags/leetcode-155/index.html +++ b/tags/leetcode-155/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/leetcode/index.html b/tags/leetcode/index.html index ff788141c2..7b5d325e7e 100644 --- a/tags/leetcode/index.html +++ b/tags/leetcode/index.html @@ -499,20 +499,20 @@ @@ -537,7 +537,7 @@
- +
diff --git a/tags/leetcode/page/2/index.html b/tags/leetcode/page/2/index.html index 866774661c..a3fa240d8e 100644 --- a/tags/leetcode/page/2/index.html +++ b/tags/leetcode/page/2/index.html @@ -496,20 +496,20 @@ @@ -534,7 +534,7 @@
- +
diff --git a/tags/leetcode/page/3/index.html b/tags/leetcode/page/3/index.html index 5f6acd4bb5..5524ff17cf 100644 --- a/tags/leetcode/page/3/index.html +++ b/tags/leetcode/page/3/index.html @@ -313,20 +313,20 @@ @@ -351,7 +351,7 @@
- +
diff --git a/tags/linked-list/index.html b/tags/linked-list/index.html index 9e083fe4e8..f24f1a81c7 100644 --- a/tags/linked-list/index.html +++ b/tags/linked-list/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/linux/index.html b/tags/linux/index.html index d8445b9306..6b82ffa9ac 100644 --- a/tags/linux/index.html +++ b/tags/linux/index.html @@ -330,20 +330,20 @@ @@ -368,7 +368,7 @@
- +
diff --git a/tags/lock/index.html b/tags/lock/index.html index bc32c8dff8..a64249419a 100644 --- a/tags/lock/index.html +++ b/tags/lock/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/mfc/index.html b/tags/mfc/index.html index 0f08385fc0..29d375190a 100644 --- a/tags/mfc/index.html +++ b/tags/mfc/index.html @@ -333,20 +333,20 @@ @@ -371,7 +371,7 @@
- +
diff --git a/tags/min-stack/index.html b/tags/min-stack/index.html index c0151bdbad..743e464978 100644 --- a/tags/min-stack/index.html +++ b/tags/min-stack/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/mq/index.html b/tags/mq/index.html index 2367b8386d..84e553f045 100644 --- a/tags/mq/index.html +++ b/tags/mq/index.html @@ -370,20 +370,20 @@ @@ -408,7 +408,7 @@
- +
diff --git a/tags/mvcc/index.html b/tags/mvcc/index.html index 218c7714c5..92f67d7d96 100644 --- a/tags/mvcc/index.html +++ b/tags/mvcc/index.html @@ -350,20 +350,20 @@ @@ -388,7 +388,7 @@
- +
diff --git a/tags/mysql/index.html b/tags/mysql/index.html index 01cc024da1..335557208f 100644 --- a/tags/mysql/index.html +++ b/tags/mysql/index.html @@ -330,20 +330,20 @@ @@ -368,7 +368,7 @@
- +
diff --git a/tags/namespace/index.html b/tags/namespace/index.html index 7f7dd55935..d577812b3c 100644 --- a/tags/namespace/index.html +++ b/tags/namespace/index.html @@ -350,20 +350,20 @@ @@ -388,7 +388,7 @@
- +
diff --git a/tags/next-key-lock/index.html b/tags/next-key-lock/index.html index e4259867ac..6a48c62046 100644 --- a/tags/next-key-lock/index.html +++ b/tags/next-key-lock/index.html @@ -330,20 +330,20 @@ @@ -368,7 +368,7 @@
- +
diff --git a/tags/nginx/index.html b/tags/nginx/index.html index 2bc9f4c8be..d6ae94ea2d 100644 --- a/tags/nginx/index.html +++ b/tags/nginx/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/nullsfirst/index.html b/tags/nullsfirst/index.html index 8d9b63bb28..057f96e3dd 100644 --- a/tags/nullsfirst/index.html +++ b/tags/nullsfirst/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/openresty/index.html b/tags/openresty/index.html index 0c8ccf5615..3707b024d0 100644 --- a/tags/openresty/index.html +++ b/tags/openresty/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/php/index.html b/tags/php/index.html index 093566e22b..e8ea74e6b9 100644 --- a/tags/php/index.html +++ b/tags/php/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
@@ -602,25 +602,3 @@ -) => { - quicklink({ - timeout : 3000, - priority: true, - ignores : [uri => uri.includes('#'),uri => uri === 'https://nicksxs.me/tags/php/',] - }); - }); - - - - - - diff --git a/tags/procedure/index.html b/tags/procedure/index.html index 2812b4c056..8b7ec9e1dd 100644 --- a/tags/procedure/index.html +++ b/tags/procedure/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/python/index.html b/tags/python/index.html index 72c582c8db..0e33c1f0e0 100644 --- a/tags/python/index.html +++ b/tags/python/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/read-view/index.html b/tags/read-view/index.html index 83ec66b237..718a43f913 100644 --- a/tags/read-view/index.html +++ b/tags/read-view/index.html @@ -350,20 +350,20 @@ @@ -388,7 +388,7 @@
- +
diff --git a/tags/signal/index.html b/tags/signal/index.html index b96a6de4dc..6753cff602 100644 --- a/tags/signal/index.html +++ b/tags/signal/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/sort/index.html b/tags/sort/index.html index 46613af879..901a15c604 100644 --- a/tags/sort/index.html +++ b/tags/sort/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/spark/index.html b/tags/spark/index.html index afed115147..eb8e0680c9 100644 --- a/tags/spark/index.html +++ b/tags/spark/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/stack/index.html b/tags/stack/index.html index 53a3c85680..691fd055ea 100644 --- a/tags/stack/index.html +++ b/tags/stack/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/string/index.html b/tags/string/index.html index 79601b0f17..a42f82486a 100644 --- a/tags/string/index.html +++ b/tags/string/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/swoole/index.html b/tags/swoole/index.html index f7a5434ade..ae2d6bed9a 100644 --- a/tags/swoole/index.html +++ b/tags/swoole/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/uname/index.html b/tags/uname/index.html index 3e648bb333..8a0cf4346f 100644 --- a/tags/uname/index.html +++ b/tags/uname/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/unlock/index.html b/tags/unlock/index.html index 3ed7304130..24c2b8c98e 100644 --- a/tags/unlock/index.html +++ b/tags/unlock/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/value/index.html b/tags/value/index.html index f632977202..8ff0c6ca46 100644 --- a/tags/value/index.html +++ b/tags/value/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/websocket/index.html b/tags/websocket/index.html index bf4e4421dd..c41d740900 100644 --- a/tags/websocket/index.html +++ b/tags/websocket/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/zsh/index.html b/tags/zsh/index.html index 447f564044..2e73fa5d26 100644 --- a/tags/zsh/index.html +++ b/tags/zsh/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/三阶段提交/index.html b/tags/三阶段提交/index.html index d2277d7933..45bf79043d 100644 --- a/tags/三阶段提交/index.html +++ b/tags/三阶段提交/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/两阶段提交/index.html b/tags/两阶段提交/index.html index 8ebba95fee..8ff42abd52 100644 --- a/tags/两阶段提交/index.html +++ b/tags/两阶段提交/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/中序/index.html b/tags/中序/index.html index ca0487ab66..8a6049a394 100644 --- a/tags/中序/index.html +++ b/tags/中序/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/中间件/index.html b/tags/中间件/index.html index 0cf40eadda..9ffd52d9ba 100644 --- a/tags/中间件/index.html +++ b/tags/中间件/index.html @@ -370,20 +370,20 @@ @@ -408,7 +408,7 @@
- +
diff --git a/tags/二叉树/index.html b/tags/二叉树/index.html index c3d335d344..69ea3620e3 100644 --- a/tags/二叉树/index.html +++ b/tags/二叉树/index.html @@ -353,20 +353,20 @@ @@ -391,7 +391,7 @@
- +
diff --git a/tags/互斥锁/index.html b/tags/互斥锁/index.html index fe02744f9c..26b4c863e2 100644 --- a/tags/互斥锁/index.html +++ b/tags/互斥锁/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/公交/index.html b/tags/公交/index.html index 763f5b6378..d91b00c032 100644 --- a/tags/公交/index.html +++ b/tags/公交/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/公交车/index.html b/tags/公交车/index.html index 782b1f338b..5c472b395a 100644 --- a/tags/公交车/index.html +++ b/tags/公交车/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/减肥/index.html b/tags/减肥/index.html index 14e755ea6f..e3c5c7478f 100644 --- a/tags/减肥/index.html +++ b/tags/减肥/index.html @@ -410,20 +410,20 @@ @@ -448,7 +448,7 @@
- +
diff --git a/tags/分布式事务/index.html b/tags/分布式事务/index.html index 7ff40c9870..1b24bfa254 100644 --- a/tags/分布式事务/index.html +++ b/tags/分布式事务/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/分布式锁/index.html b/tags/分布式锁/index.html index 7071af653d..b3faaeb829 100644 --- a/tags/分布式锁/index.html +++ b/tags/分布式锁/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/削峰填谷/index.html b/tags/削峰填谷/index.html index 289135c8e9..c07a82c2b8 100644 --- a/tags/削峰填谷/index.html +++ b/tags/削峰填谷/index.html @@ -370,20 +370,20 @@ @@ -408,7 +408,7 @@
- +
diff --git a/tags/前序/index.html b/tags/前序/index.html index 7e046a81b3..43843b77ed 100644 --- a/tags/前序/index.html +++ b/tags/前序/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/加塞/index.html b/tags/加塞/index.html index 70a3845871..5365a6f5f3 100644 --- a/tags/加塞/index.html +++ b/tags/加塞/index.html @@ -330,20 +330,20 @@ @@ -368,7 +368,7 @@
- +
diff --git a/tags/单例/index.html b/tags/单例/index.html index 240dc09281..75f739fdaf 100644 --- a/tags/单例/index.html +++ b/tags/单例/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/博客,文章/index.html b/tags/博客,文章/index.html index bc753810e9..8817869fc5 100644 --- a/tags/博客,文章/index.html +++ b/tags/博客,文章/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/发行版/index.html b/tags/发行版/index.html index d9cb2de6b8..0bbae5037e 100644 --- a/tags/发行版/index.html +++ b/tags/发行版/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/口罩/index.html b/tags/口罩/index.html index 02a18b02ee..a566149fc3 100644 --- a/tags/口罩/index.html +++ b/tags/口罩/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/吐槽/index.html b/tags/吐槽/index.html index 8a1370ae59..f1d06d78a6 100644 --- a/tags/吐槽/index.html +++ b/tags/吐槽/index.html @@ -330,20 +330,20 @@ @@ -368,7 +368,7 @@
- +
diff --git a/tags/垃圾回收/index.html b/tags/垃圾回收/index.html new file mode 100644 index 0000000000..abb79b5111 --- /dev/null +++ b/tags/垃圾回收/index.html @@ -0,0 +1,604 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tag: 垃圾回收 | Nicksxs's Blog + + + + + + + + + + + + + + + + +
+
+ +
+
+ + +
+ + + +

Nicksxs's Blog

+ +
+

What hurts more, the pain of hard work or the pain of regret?

+
+ + +
+ + + + + + + + + +
+
+ + +
+ + 0% +
+ + + + +
+
+
+ + +
+ + + + + +
+
+
+

垃圾回收 + Tag +

+
+ + +
+ 2021 +
+ + + +
+
+ + + + + + + + +
+ + + + +
+ + + + + + + + +
+
+ +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tags/基础设施/index.html b/tags/基础设施/index.html index fbb2d085a8..1e5ddd28c0 100644 --- a/tags/基础设施/index.html +++ b/tags/基础设施/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/容错机制/index.html b/tags/容错机制/index.html index a77089a04e..8beaf96f63 100644 --- a/tags/容错机制/index.html +++ b/tags/容错机制/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/寄生虫/index.html b/tags/寄生虫/index.html index 3c7a1d0432..b1e53066e4 100644 --- a/tags/寄生虫/index.html +++ b/tags/寄生虫/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/小技巧/index.html b/tags/小技巧/index.html index 59294a3cf9..5903c6f5b8 100644 --- a/tags/小技巧/index.html +++ b/tags/小技巧/index.html @@ -350,20 +350,20 @@ @@ -388,7 +388,7 @@
- +
diff --git a/tags/布隆过滤器/index.html b/tags/布隆过滤器/index.html index f4b88ca7d4..bec002b877 100644 --- a/tags/布隆过滤器/index.html +++ b/tags/布隆过滤器/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/干活/index.html b/tags/干活/index.html index 96b99a36c0..4e55f7df55 100644 --- a/tags/干活/index.html +++ b/tags/干活/index.html @@ -390,20 +390,20 @@ @@ -428,7 +428,7 @@
- +
diff --git a/tags/年中总结/index.html b/tags/年中总结/index.html index aacd24beda..db7cf2e4b0 100644 --- a/tags/年中总结/index.html +++ b/tags/年中总结/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/年终总结/index.html b/tags/年终总结/index.html index 9627393125..a16d33556a 100644 --- a/tags/年终总结/index.html +++ b/tags/年终总结/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/并发/index.html b/tags/并发/index.html index c4babf855f..73da491d83 100644 --- a/tags/并发/index.html +++ b/tags/并发/index.html @@ -330,20 +330,20 @@ @@ -368,7 +368,7 @@
- +
diff --git a/tags/幸福了吗/index.html b/tags/幸福了吗/index.html index 681c5cc9dc..4649d97022 100644 --- a/tags/幸福了吗/index.html +++ b/tags/幸福了吗/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/幻读/index.html b/tags/幻读/index.html index d00146258f..96d081e0a7 100644 --- a/tags/幻读/index.html +++ b/tags/幻读/index.html @@ -330,20 +330,20 @@ @@ -368,7 +368,7 @@
- +
diff --git a/tags/开车/index.html b/tags/开车/index.html index c537d652b3..a2fefe67f6 100644 --- a/tags/开车/index.html +++ b/tags/开车/index.html @@ -330,20 +330,20 @@ @@ -368,7 +368,7 @@
- +
diff --git a/tags/影评/index.html b/tags/影评/index.html index 376d638b4d..70113d2f3f 100644 --- a/tags/影评/index.html +++ b/tags/影评/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/打卡/index.html b/tags/打卡/index.html index 39be52c701..361990d05f 100644 --- a/tags/打卡/index.html +++ b/tags/打卡/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/排序/index.html b/tags/排序/index.html index 1b7eb35efd..8af581bc91 100644 --- a/tags/排序/index.html +++ b/tags/排序/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/数据结构/index.html b/tags/数据结构/index.html index 729850b38f..f6f046c83b 100644 --- a/tags/数据结构/index.html +++ b/tags/数据结构/index.html @@ -493,20 +493,20 @@ @@ -531,7 +531,7 @@
- +
diff --git a/tags/数据结构/page/2/index.html b/tags/数据结构/page/2/index.html index 9e4609ea9a..d8493c8641 100644 --- a/tags/数据结构/page/2/index.html +++ b/tags/数据结构/page/2/index.html @@ -313,20 +313,20 @@ @@ -351,7 +351,7 @@
- +
diff --git a/tags/最小栈/index.html b/tags/最小栈/index.html index 5cb3159d04..bc74b07bd1 100644 --- a/tags/最小栈/index.html +++ b/tags/最小栈/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/杀人诛心/index.html b/tags/杀人诛心/index.html index 13398edff3..9b376194ea 100644 --- a/tags/杀人诛心/index.html +++ b/tags/杀人诛心/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/杭州/index.html b/tags/杭州/index.html index fab7cbc8bc..ee3522f7c8 100644 --- a/tags/杭州/index.html +++ b/tags/杭州/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/标记整理/index.html b/tags/标记整理/index.html new file mode 100644 index 0000000000..d3cfad9f98 --- /dev/null +++ b/tags/标记整理/index.html @@ -0,0 +1,604 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Tag: 标记整理 | Nicksxs's Blog + + + + + + + + + + + + + + + + +
+
+ +
+
+ + +
+ + + +

Nicksxs's Blog

+ +
+

What hurts more, the pain of hard work or the pain of regret?

+
+ + +
+ + + + + + + + + +
+
+ + +
+ + 0% +
+ + + + +
+
+
+ + +
+ + + + + +
+
+
+

标记整理 + Tag +

+
+ + +
+ 2021 +
+ + + +
+
+ + + + + + + + +
+ + + + +
+ + + + + + + + +
+
+ +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tags/注解/index.html b/tags/注解/index.html index 072cd477f4..d9ce8669f9 100644 --- a/tags/注解/index.html +++ b/tags/注解/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/消息队列/index.html b/tags/消息队列/index.html index 520f7d0972..f484a224ad 100644 --- a/tags/消息队列/index.html +++ b/tags/消息队列/index.html @@ -370,20 +370,20 @@ @@ -408,7 +408,7 @@
- +
diff --git a/tags/源码/index.html b/tags/源码/index.html index 8b959478c1..9138f6c238 100644 --- a/tags/源码/index.html +++ b/tags/源码/index.html @@ -493,20 +493,20 @@ @@ -531,7 +531,7 @@
- +
diff --git a/tags/源码/page/2/index.html b/tags/源码/page/2/index.html index c3a3723094..89f30875ef 100644 --- a/tags/源码/page/2/index.html +++ b/tags/源码/page/2/index.html @@ -313,20 +313,20 @@ @@ -351,7 +351,7 @@
- +
diff --git a/tags/源码解析/index.html b/tags/源码解析/index.html index ba856fd3ed..37d86ac277 100644 --- a/tags/源码解析/index.html +++ b/tags/源码解析/index.html @@ -350,20 +350,20 @@ @@ -388,7 +388,7 @@
- +
diff --git a/tags/生活/index.html b/tags/生活/index.html index b53344d615..923ea3a231 100644 --- a/tags/生活/index.html +++ b/tags/生活/index.html @@ -496,20 +496,20 @@ @@ -534,7 +534,7 @@
- +
diff --git a/tags/生活/page/2/index.html b/tags/生活/page/2/index.html index d743b95227..43f261b9c3 100644 --- a/tags/生活/page/2/index.html +++ b/tags/生活/page/2/index.html @@ -353,20 +353,20 @@ @@ -391,7 +391,7 @@
- +
diff --git a/tags/疫情/index.html b/tags/疫情/index.html index 68dac6cc11..14e8bb2786 100644 --- a/tags/疫情/index.html +++ b/tags/疫情/index.html @@ -330,20 +330,20 @@ @@ -368,7 +368,7 @@
- +
diff --git a/tags/糟心事/index.html b/tags/糟心事/index.html index a8430a4521..b356464be6 100644 --- a/tags/糟心事/index.html +++ b/tags/糟心事/index.html @@ -330,20 +330,20 @@ @@ -368,7 +368,7 @@
- +
diff --git a/tags/索引/index.html b/tags/索引/index.html index 6e6c9df7a7..805b759c5c 100644 --- a/tags/索引/index.html +++ b/tags/索引/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/缓存/index.html b/tags/缓存/index.html index 51662efa54..5c3b944242 100644 --- a/tags/缓存/index.html +++ b/tags/缓存/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/缓存击穿/index.html b/tags/缓存击穿/index.html index f6c7b45ba4..8cec135ff2 100644 --- a/tags/缓存击穿/index.html +++ b/tags/缓存击穿/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/缓存穿透/index.html b/tags/缓存穿透/index.html index cc8f95262c..f38677c957 100644 --- a/tags/缓存穿透/index.html +++ b/tags/缓存穿透/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/缓存雪崩/index.html b/tags/缓存雪崩/index.html index ff10fb9a7e..aef2ec0385 100644 --- a/tags/缓存雪崩/index.html +++ b/tags/缓存雪崩/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/美国/index.html b/tags/美国/index.html index f28717e987..d2124b698f 100644 --- a/tags/美国/index.html +++ b/tags/美国/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/自适应拓展/index.html b/tags/自适应拓展/index.html index 810f4be1c2..eb3e3b01ba 100644 --- a/tags/自适应拓展/index.html +++ b/tags/自适应拓展/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/规则/index.html b/tags/规则/index.html index 62f1177dcd..c71fee6aca 100644 --- a/tags/规则/index.html +++ b/tags/规则/index.html @@ -330,20 +330,20 @@ @@ -368,7 +368,7 @@
- +
diff --git a/tags/设计模式/index.html b/tags/设计模式/index.html index 0cf21d840b..08319141d7 100644 --- a/tags/设计模式/index.html +++ b/tags/设计模式/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/读书/index.html b/tags/读书/index.html index 7c820c5a45..749e805704 100644 --- a/tags/读书/index.html +++ b/tags/读书/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/读后感/index.html b/tags/读后感/index.html index 2ef15009ba..b7f50fd69f 100644 --- a/tags/读后感/index.html +++ b/tags/读后感/index.html @@ -333,20 +333,20 @@ @@ -371,7 +371,7 @@
- +
diff --git a/tags/足球/index.html b/tags/足球/index.html index 89c57cee2d..cdf840c786 100644 --- a/tags/足球/index.html +++ b/tags/足球/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/跑步/index.html b/tags/跑步/index.html index 83b6e753b8..78acdbaa60 100644 --- a/tags/跑步/index.html +++ b/tags/跑步/index.html @@ -410,20 +410,20 @@ @@ -448,7 +448,7 @@
- +
diff --git a/tags/路政规划/index.html b/tags/路政规划/index.html index 5ee5f2e0ee..660f49a498 100644 --- a/tags/路政规划/index.html +++ b/tags/路政规划/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/转义/index.html b/tags/转义/index.html index f69beda901..30c624ac3a 100644 --- a/tags/转义/index.html +++ b/tags/转义/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/运动/index.html b/tags/运动/index.html index ef0b5d2413..b520d700f9 100644 --- a/tags/运动/index.html +++ b/tags/运动/index.html @@ -410,20 +410,20 @@ @@ -448,7 +448,7 @@
- +
diff --git a/tags/递归/index.html b/tags/递归/index.html index 395490a86f..c892cceb4e 100644 --- a/tags/递归/index.html +++ b/tags/递归/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +
diff --git a/tags/题解/index.html b/tags/题解/index.html index 6b0908f7d0..72ecc99b5a 100644 --- a/tags/题解/index.html +++ b/tags/题解/index.html @@ -453,20 +453,20 @@ @@ -491,7 +491,7 @@
- +
diff --git a/tags/高速/index.html b/tags/高速/index.html index 9bb6a67852..b3f96ce38d 100644 --- a/tags/高速/index.html +++ b/tags/高速/index.html @@ -310,20 +310,20 @@ @@ -348,7 +348,7 @@
- +