forked from Java-Edge/Java-Interview-Tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.js
More file actions
1213 lines (1169 loc) · 54.2 KB
/
config.js
File metadata and controls
1213 lines (1169 loc) · 54.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
module.exports = {
port: "8080",
dest: "./dist",
base: "/",
// 是否开启默认预加载js
shouldPrefetch: (file, type) => {
return false;
},
markdown: {
lineNumbers: true,
externalLinks: {
target: '_blank',
rel: 'noopener noreferrer'
}
},
locales: {
"/": {
lang: "zh-CN",
title: "编程严选网",
description: "Java、前端、大数据、AI应用开发求职必备技能:计算机基础,大厂设计模式、DDD以及各大中台和业务系统设计真实案例...软件工程师的一站式终身学习网站!"
}
},
head: [
// ico
["link", {
rel: "icon",
href: `/favicon.ico`
}],
// meta
["meta", {
name: "robots",
content: "all"
}],
["meta", {
name: "author",
content: "JavaEdge"
}],
["meta", {
"http-equiv": "Cache-Control",
content: "no-cache, no-store, must-revalidate"
}],
["meta", {
"http-equiv": "Pragma",
content: "no-cache"
}],
["meta", {
"http-equiv": "Expires",
content: "0"
}],
["meta", {
name: "keywords",
content: "JavaEdge,数据结构,重学设计模式, 中间件, Java基础, 面经手册,Java面试题,API网关"
}],
["meta", {
name: "apple-mobile-web-app-capable",
content: "yes"
}],
[
'script',
{ charset: 'utf-8', src: 'https://my.openwrite.cn/js/readmore.js' },
],
],
plugins: [
[
{globalUIComponents: ['LockArticle', 'PayArticle']}
],
// ['@vuepress/medium-zoom', {
// selector: 'img:not(.nozoom)',
// // See: https://github.com/francoischalifour/medium-zoom#options
// options: {
// margin: 16
// }
// }],
// ['vuepress-plugin-baidu-autopush', {}],
// // see: https://github.com/znicholasbrown/vuepress-plugin-code-copy
['vuepress-plugin-code-copy', {
align: 'bottom',
color: '#3eaf7c',
successText: '@JavaEdge: 代码已经复制到剪贴板'
}],
// // see: https://github.com/tolking/vuepress-plugin-img-lazy
// ['img-lazy', {}],
// ["vuepress-plugin-tags", {
// type: 'default', // 标签预定义样式
// color: '#42b983', // 标签字体颜色
// border: '1px solid #e2faef', // 标签边框颜色
// backgroundColor: '#f0faf5', // 标签背景颜色
// selector: '.page .content__default h1' // ^v1.0.1 你要将此标签渲染挂载到哪个元素后面?默认是第一个 H1 标签后面;
// }],
],
themeConfig: {
docsRepo: "Java-Edge/Java-Interview-Tutorial",
// 编辑文档的所在目录
docsDir: 'docs',
// 文档放在一个特定的分支下:
docsBranch: 'main',
//logo: "/logo.png",
editLinks: true,
sidebarDepth: 0,
//smoothScroll: true,
locales: {
"/": {
label: "简体中文",
selectText: "Languages",
editLinkText: "关注GitHub知识库",
lastUpdated: "上次更新",
nav: [{
text: '导读',
link: '/md/other/guide-to-reading.md'
},
{
text: 'RPC',
items: [{
text: '熔断限流',
link: '/md/rpc/熔断限流.md'
}, ]
},
{
text: '架构',
items: [{
text: '业务架构',
items: [{
text: '00-聚合支付架构',
link: '/md/biz-arch/00-聚合支付架构从零到一.md'
}, ]
},
{
text: 'DDD',
items: [{
text: '00-DDD专栏规划',
link: '/md/DDD/00-DDD专栏规划.md'
}, ]
},
{
text: '数据中台',
items: [{
text: '00-新一代数据栈将逐步替代国内单一“数据中台”',
link: '/md/biz-arch/00-新一代数据栈将逐步替代国内单一“数据中台”.md'
}, ]
},
{
text: '用户画像',
items: [{
text: '01-DMP系统简介.md',
link: '/md/biz-arch/01-DMP系统简介.md'
}, ]
},
]
},
{
text: '大数据',
items: [{
text: '大数据平台',
items: [{
text: '00-互联网大厂的大数据平台架构',
link: '/md/bigdata/大数据平台架构.md'
},
{
text: '01-对象存储',
link: '/md/bigdata/对象存储.md'
},
]
},
{
text: 'Hadoop',
items: [{
text: '00-安装下载Hadoop',
link: '/md/bigdata/安装下载Hadoop.md'
},
{
text: '01-HDFS',
link: '/md/bigdata/HDFS.md'
},
]
},
{
text: 'Hive',
items: [{
text: 'Hive专栏概述',
link: '/md/bigdata/Hive专栏概述.md'
}, ]
},
{
text: '数据仓库',
items: [{
text: 'Spark+ClickHouse实战企业级数据仓库专栏',
link: '/md/bigdata/Spark+ClickHouse实战企业级数据仓库专栏.md'
}, ]
},
{
text: 'DataX',
items: [{
text: 'DataX专栏',
link: '/md/bigdata/阿里云开源离线同步工具DataX3.0介绍.md'
}, ]
},
{
text: 'DolphinScheduler',
items: [{
text: 'DolphinScheduler专栏',
link: '/md/bigdata/作业帮基于 DolphinScheduler 的数据开发平台实践.md'
}, ]
},
{
text: 'Spark',
items: [{
text: '为啥要学习Spark?',
link: '/md/spark/为啥要学习Spark?.md'
}, ]
},
]
},
{
text: 'Web安全',
items: [
{
text: '常见攻击手段',
items: [{
text: '常见攻击手段概述',
link: '/md/security/01-OAuth 2.0实战-为什么要先获取授权码code.md'
}, ]
},
{
text: 'Oauth2.0',
items: [{
text: 'Oauth2.0专栏概述',
link: '/md/security/01-OAuth 2.0实战-为什么要先获取授权码code.md'
}, ]
},
]
},
{
text: 'MQ',
items: [
{
text: 'Kafka',
items: [
{
text: 'Kafka门派知多少',
link: '/md/kafka/Kafka门派知多少.md'
},
{
text: '08-全网最全图解Kafka适用场景',
link: '/md/kafka/08-全网最全图解Kafka适用场景.md'
},
]
},
{
text: 'RocketMQ',
items: [
{
text: '01-RocketMQ核心内容',
link: '/md/RocketMQ/01-RocketMQ核心内容.md'
},
{
text: '02-基于电商场景的高并发RocketMQ实战',
link: '/md/RocketMQ/02-基于电商场景的高并发RocketMQ实战.md'
},
]
},
{
text: 'RabbitMQ',
items: [{
text: '00-RabbitMQ',
link: '/md/rabbitmq/00-RabbitMQ实战下载与安装.md'
},
]
},
]
},
{
text: '重构',
items: [
{
text: '重构',
items: [{
text: '代码的坏味道',
link: '/md/design/代码的坏味道.md'
},
]
},
{
text: '设计原则',
items: [{
text: '设计原则概述',
link: '/md/kafka/Kafka门派知多少.md'
},
]
},
{
text: '设计模式',
items: [{
text: '模板方法设计模式(Template Pattern)',
link: '/md/design/模板方法设计模式(Template Pattern).md'
},
]
},
]
},
{
text: 'Java',
items: [{
text: '并发',
items: [{
text: '并发编程专栏概述',
link: '/md/java/并发编程专栏概述.md'
}, ]
},
{
text: 'JVM',
items: [{
text: 'JVM专栏概述',
link: '/md/java/JVM专栏概述.md'
}, ]
},
{
text: 'JDK',
items: [{
text: 'JDK22新特性',
link: '/md/java/JDK22新特性.md'
}, ]
},
{
text: 'Netty',
items: [{
text: 'Netty入门',
link: '/md/netty/ChannelPipeline接口.md'
}, ]
},
]
},
{
text: '微服务',
items: [{
text: 'Dubbo',
items: [{
text: '01-互联网架构的发展历程',
link: '/md/Dubbo/01-互联网架构的发展历程.md'
}, ]
},
{
text: 'SpringCloud',
items: [{
text: 'SpringCloudAlibaba',
link: '/md/spring/spring-cloud/SpringCloudAlibaba介绍.md'
}, {
text: 'SpringCloudGateway工作原理与链路图',
link: '/md/spring/spring-cloud/SpringCloudGateway工作原理与链路图.md'
},
{
text: 'SpringCloudGateway组件',
items: [{
text: 'SpringCloudGateway工作原理与链路图',
link: '/md/spring/spring-cloud/SpringCloudGateway工作原理与链路图.md'
},
{
text: 'SpringCloudGateway核心之Predicate',
link: '/md/spring/spring-cloud/SpringCloudGateway核心之Predicate.md'
},
{
text: 'SpringCloudGateway之Filter多过程介绍',
link: '/md/spring/spring-cloud/SpringCloudGateway之Filter多过程介绍.md'
},
{
text: 'SpringCloudGateway之熔断集成篇',
link: '/md/spring/spring-cloud/SpringCloudGateway之熔断集成篇.md'
},
{
text: 'SpringCloudGateway之限流集成篇',
link: '/md/spring/spring-cloud/SpringCloudGateway之限流集成篇.md'
},
{
text: 'SpringCloudGateway之统一鉴权篇',
link: '/md/spring/spring-cloud/SpringCloudGateway之统一鉴权篇.md'
},
{
text: 'SpringCloudGateway之灰度发布篇',
link: '/md/spring/spring-cloud/SpringCloudGateway之灰度发布篇.md'
},
{
text: 'SpringCloudGateway之高性能篇',
link: '/md/spring/spring-cloud/SpringCloudGateway之高性能篇.md'
}
]
}
]
},
]
},
{
text: '数据库',
items: [{
text: 'MySQL',
items: [{
text: '亿级数据量商品系统的SQL调优实战',
link: '/md/mysql/00-亿级数据量商品系统的SQL调优实战.md'
}]
},
{
text: 'Redis',
items: [{
text: 'Redis数据结构的最佳实践',
link: '/md/redis/00-数据结构的最佳实践.md'
}]
},
{
text: 'ElasticSearch',
items: [{
text: 'ES专栏大纲',
link: '/md/es/ES专栏大纲.md'
}]
},
{
text: 'ClickHouse',
items: [{
text: 'clickhouse概述',
link: '/md/ck/clickhouse概述.md'
}]
},
{
text: '分布式数据库',
items: [{
text: '查询执行引擎:如何让聚合计算加速?',
link: '/md/distdb/查询执行引擎:如何让聚合计算加速?.md'
}]
},
]
},
{
text: '云原生',
items: [
{
text: 'Docker',
items: [{
text: 'Docker基础命令大全',
link: '/md/docker/00-Docker基础命令大全.md'
}]
},
{
text: 'k8s',
items: [{
text: 'kubectl命令',
link: '/md/k8s/kubectl命令.md'
}]
},
{
text: '监控',
items: [{
text: '00-你居然还去服务器上捞日志,搭个日志收集系统难道不香么!',
link: '/md/monitor/00-你居然还去服务器上捞日志,搭个日志收集系统难道不香么!.md'
}]
},
]
},
{
text: '计基',
items: [
{
text: '计算机网络',
items: [{
text: '00-计算机网络-网络层原理',
link: '/md/network/计算机网络-网络层原理.md'
}, ]
},
{
text: 'Linux操作系统',
items: [{
text: '00-操作系统专栏大纲',
link: '/md/linux/00-操作系统专栏大纲.md'
}, ]
},
{
text: '数据结构与算法',
items: [{
text: '数据结构与算法专栏大纲',
link: '/md/algorithm/logic/basic/00-数据结构与算法专栏大纲.md'
}, ]
},
{
text: '大厂算法面试',
items: [{
text: '00-阿里秋招高频算法题汇总-基础篇',
link: '/md/algorithm/logic/leetcode/00-阿里秋招高频算法题汇总-基础篇.md'
},
{
text: '01-阿里秋招高频算法题汇总-中级篇',
link: '/md/algorithm/logic/leetcode/01-阿里秋招高频算法题汇总-中级篇.md'
},
{
text: '02-阿里秋招高频算法题汇总-进阶篇',
link: '/md/algorithm/logic/leetcode/02-阿里秋招高频算法题汇总-进阶篇.md'
},
{
text: '03-字节秋招高频算法题汇总-基础篇',
link: '/md/algorithm/logic/leetcode/03-字节秋招高频算法题汇总-基础篇.md'
},
{
text: '04-字节秋招高频算法题汇总-中级篇',
link: '/md/algorithm/logic/leetcode/04-字节秋招高频算法题汇总-中级篇.md'
},
{
text: '05-字节秋招高频算法题汇总-进阶篇',
link: '/md/algorithm/logic/leetcode/05-字节秋招高频算法题汇总-进阶篇.md'
}
]
}
]
},
{
text: '面试',
link: '/md/zqy/面试题/01-分布式技术面试实战.md'
},
{
text: '12306',
items: [{
text: '项目介绍',
link: '/md/12306/项目介绍.md'
},
{
text: '快速开始',
items: [{
text: '环境搭建',
link: '/md/12306/环境搭建.md'
}]
},
{
text: '核心技术文档',
items: [{
text: '如何生成分布式ID',
link: '/md/12306/如何生成分布式ID.md'
}, ]
}
]
},
{
text: 'Vue',
items: [{
text: '01-Vue开发实战',
link: '/md/vue/01-Vue开发实战.md'
}, ]
},
{
text: 'AI',
items: [
{
text: 'GPT发展',
link: '/md/AI/Claude3到底多强'
},
{
text: '机器学习',
link: '/md/AI/01-人工智能概要'
},
{
text: 'LLM应用开发',
link: '/md/AI/00-为什么要学习大模型'
},
]
},
{
text: '职业规划',
items: [{
text: '00-Java工程师必读书单',
link: '/md/career/Java工程师必读书单.md'
}, ]
},
],
// 配置文章的侧边导航栏 新增文章提交前都需要在此处操作!!!
sidebar: {
"/md/Dubbo/": [{
title: "Dubbo深入理解系列",
collapsable: false,
sidebarDepth: 0,
children: [
"01-互联网架构的发展历程.md",
"02-Dubbo特性及工作原理.md",
"03-Dubbo的负载均衡及高性能RPC调用.md",
"04-Dubbo的通信协议.md",
"05-Dubbo的应用及注册和SPI机制.md",
"06-Dubbo相关面试题和源码使用技巧.md",
"07-Dubbo真实生产环境思考.md"
]
}],
"/md/zqy/面试题/": [{
title: "面试突击",
collapsable: false,
sidebarDepth: 0,
children: [
"01-分布式技术面试实战.md",
"02-注册中心和网关面试实战.md",
"03-生产部署面试实战.md",
"04-分布式锁、幂等性问题实战.md",
"05-Java基础面试实战.md",
"06-Spring面试实战.md",
"07-计算机网络面试实战.md",
"08-数据库面试实战.md",
"09-网络通信及可见性面试实战.md",
"10-Java 系统架构安全面试实战.md",
"11-深挖网络 IO 面试实战.md",
"12-分布式架构、性能优化、场景设计面试实战.md",
]
},
{
title: "面试大全",
collapsable: false,
sidebarDepth: 0,
children: [
"面试题-Java基础.md",
"面试题-MySQL.md",
"面试题-Netty.md",
"面试题-Redis.md",
"面试题-场景题.md"
]
},
{
title: "面试高频考点",
collapsable: false,
sidebarDepth: 0,
children: [
"gaopin/00-RocketMQ可靠性、重复消费解决方案.md",
"gaopin/01-RocketMQ有序性、消息积压解决方案.md",
"gaopin/02-Redis的IO多路复用.md",
"gaopin/03-ZooKeeper运行原理.md"
]
},
{
title: "互联网大厂面经",
collapsable: false,
sidebarDepth: 0,
children: [
"mianjing/00-淘天提前批面试.md",
]
}
],
"/md/biz-arch/": [{
title: "业务架构",
collapsable: false,
sidebarDepth: 0,
children: [
"00-聚合支付架构从零到一.md",
"01-供应链域数据中台设计.md",
"02-供应链采购视角的业务系统架构.md",
"03-客服平台架构实践.md",
"04-数据质量中心系统设计.md",
"05-大厂CRM系统架构优化实战.md",
"06-运营后台系统设计.md",
"07-大厂报价查询系统性能优化之道.md",
"08-视频推荐索引构建.md",
"09-交易中台-如何防止订单二次重复支付?.md",
]
},
{
title: "数据中台",
collapsable: false,
sidebarDepth: 0,
children: [
"00-新一代数据栈将逐步替代国内单一“数据中台”",
"01-大数据的尽头是数据中台吗?",
"03-构建数据中台的三要素:方法论、组织和技术",
"05-如何统一管理纷繁杂乱的数据指标?",
]
},
{
title: "用户画像",
collapsable: false,
sidebarDepth: 0,
children: [
"01-DMP系统简介",
"05-用户画像是什么?",
"06-构建高质量的用户画像",
"07-用户画像和特征工程",
]
},
],
"/md/trade/": [{
title: "交易中台",
collapsable: false,
sidebarDepth: 0,
children: [
"00-如何防止订单二次重复支付?.md",
]
}],
"/md/bigdata/": [{
title: "大数据平台",
collapsable: false,
sidebarDepth: 0,
children: [
"大数据平台架构.md",
"对象存储.md",
]
},
{
title: "Hadoop",
collapsable: false,
sidebarDepth: 0,
children: [
"安装下载Hadoop.md",
"HDFS.md",
]
},
{
title: "Hive",
collapsable: false,
sidebarDepth: 0,
children: [
"Hive专栏概述",
"Hive 2.x 的安装与配置",
"Hive执行原理",
"Hive分区和分桶",
"Hive修复分区",
"hive的严格模式",
"hiveserver2",
]
},
{
title: "数据仓库",
collapsable: false,
sidebarDepth: 0,
children: [
"维度建模理论之事实表",
"维度建模理论之维度表",
"数仓逻辑模型",
"数仓业务调研",
"数仓分层和数仓建模",
"轻松驾驭Hive数仓",
"数仓开发之ODS层",
"数仓开发之DIM层",
"数仓开发之DWD层",
"数仓开发之DWS层",
"数仓开发之ADS层",
"OLAP平台架构演化历程",
]
},
{
title: "DataX",
collapsable: false,
sidebarDepth: 0,
children: [
"阿里云开源离线同步工具DataX3.0介绍",
"数仓数据导出",
]
},
{
title: "DolphinScheduler",
collapsable: false,
sidebarDepth: 0,
children: [
"DolphinScheduler简介",
"DolphinScheduler部署",
"DolphinScheduler参数",
"DolphinScheduler资源中心",
"DolphinScheduler告警通知",
"作业帮基于 DolphinScheduler 的数据开发平台实践",
]
},
],
"/md/rpc/": [{
title: "RPC",
collapsable: false,
sidebarDepth: 0,
children: [
"熔断限流.md",
]
}],
"/md/network/": [{
title: "计算机网络",
collapsable: false,
sidebarDepth: 0,
children: [
"计算机网络-网络层原理",
]
}],
"/md/linux/": [{
title: "Linux操作系统",
collapsable: false,
sidebarDepth: 0,
children: [
"00-操作系统专栏大纲",
"01-Linux命令",
"02-进程管理",
"超线程(Hyper-Threading),单指令多数据流(SIMD)技术"
]
}],
// "/md/MQTT/": [
// {
// title: "MQTT",
// collapsable: false,
// sidebarDepth: 0,
// children: [
// "07-MQTT发布订阅模式介绍.md"
// ]
// }
// ],
"/md/spider/": [{
title: "爬虫",
collapsable: false,
sidebarDepth: 0,
children: [
"00-爬虫基础.md"
]
}],
"/md/java/": [{
title: "并发",
collapsable: false,
sidebarDepth: 0,
children: [
"00-Java并发编程.md",
"01-synchronized原理.md",
"02-volatile原理.md",
"03-ReentrantLock与AQS.md",
"04-线程池以及生产环境使用.md",
"05-京东并行框架asyncTool如何针对高并发场景进行优化?.md",
]
},
{
title: "JVM",
collapsable: false,
sidebarDepth: 0,
children: [
"JVM专栏概述",
"01-JVM虚拟机-上篇",
"02-JVM虚拟机-下篇",
"高并发BI系统避免频繁Y-GC",
]
},
{
title: "JDK新特性",
collapsable: false,
sidebarDepth: 0,
children: [
"JDK21新特性.md",
"JDK22新特性.md",
]
},
],
"/md/algorithm/logic/leetcode/": [{
title: "大厂算法面试",
collapsable: false,
sidebarDepth: 0,
children: [
"00-阿里秋招高频算法题汇总-基础篇",
"01-阿里秋招高频算法题汇总-中级篇",
"02-阿里秋招高频算法题汇总-进阶篇",
"03-字节秋招高频算法题汇总-基础篇",
"04-字节秋招高频算法题汇总-中级篇",
"05-字节秋招高频算法题汇总-进阶篇",
]
}, ],
"/md/algorithm/logic/basic/": [{
title: "数据结构与算法",
collapsable: false,
sidebarDepth: 0,
children: [
"00-数据结构与算法专栏大纲",
"【图解数据结构与算法】LRU缓存淘汰算法面试时到底该怎么写",
"【图解数据结构】外行人也能看懂的哈希表",
]
}],
"/md/spring/spring-cloud/": [{
title: "SpringCloudAlibaba",
collapsable: false,
sidebarDepth: 0,
children: [
"SpringCloudAlibaba介绍.md",
]
},
{
title: "SpringCloudGateway组件",
collapsable: false,
sidebarDepth: 0,
children: [
"SpringCloudGateway工作原理与链路图.md",
"SpringCloudGateway核心之Predicate.md",
"SpringCloudGateway之Filter多过程介绍.md",
"SpringCloudGateway之熔断集成篇.md",
"SpringCloudGateway之限流集成篇.md",
"SpringCloudGateway之统一鉴权篇.md",
"SpringCloudGateway之高性能篇.md"
]
}
],
"/md/DDD/": [{
title: "DDD领域驱动设计",
collapsable: false,
sidebarDepth: 0,
children: [
"00-DDD专栏规划.md",
"基于电商履约场景的DDD实战.md",
]
}],
"/md/mysql/": [{
title: "MySQL",
collapsable: false,
sidebarDepth: 0,
children: [
"00-亿级数据量商品系统的SQL调优实战.md",
"MySQL查询优化.md",
"InnoDB架构设计.md",
"为什么临时表可以重名?.md",
]
}],
"/md/docker/": [{
title: "Docker",
collapsable: false,
sidebarDepth: 0,
children: [
"00-Docker基础命令大全.md",
"01-标准化打包技术.md",
]
}],
"/md/k8s/": [{
title: "Kubernetes",
collapsable: false,
sidebarDepth: 0,
children: [
"kubectl命令",
]
}],
"/md/monitor/": [{
title: "监控",
collapsable: false,
sidebarDepth: 0,
children: [
"00-你居然还去服务器上捞日志,搭个日志收集系统难道不香么!",
"03-Loki 日志监控",
]
}],
"/md/netty/": [{
title: "Netty",
collapsable: false,
sidebarDepth: 0,
children: [
"ChannelPipeline接口",
"(06-1)-ChannelHandler 家族",
"(08)-学习Netty BootStrap的核心知识,成为网络编程高手!",
"(18)-检测新连接"
]
}],
"/md/kafka": [{
title: "Kafka",
collapsable: false,
sidebarDepth: 0,
children: [
// "Kafka门派知多少",
"08-全网最全图解Kafka适用场景",
// "15-基于kafka实现延迟队列"
]
}],
"/md/RocketMQ/": [
{
title: "RocketMQ",
collapsable: false,
sidebarDepth: 0,
children: [
"01-RocketMQ核心内容",
"RocketMQ实战(01)-基本概念",
"RocketMQ实战(02)-下载安装",
"RocketMQ实战(03)-消息的有序性",
"RocketMQ实战(04) - 订阅机制和定时消息",
"RocketMQ实战(05) - 批量消息和事务消息",
"02-基于电商场景的高并发RocketMQ实战",