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
2643 lines (2457 loc) · 108 KB
/
config.js
File metadata and controls
2643 lines (2457 loc) · 108 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'
},
mermaid: true,
},
locales: {
"/": {
lang: "zh-CN",
title: "编程严选网",
description: "Java、前端、大数据、云原生、区块链、AI大模型应用开发求职必备技能:计算机基础,设计模式、DDD及各大中台和业务系统设计真实案例...软件开发的一站式终身学习网站!"
}
},
head: [
["link", {
rel: "icon",
href: `/favicon.ico`
}],
["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'
},
],
// 添加 google 分析代码(国内无法访问)
// [
// 'script',
// {
// charset: 'utf-8',
// src: 'https://www.googletagmanager.com/gtag/js?id=G-3ZNNG02JRB'
// },
// ],
// [
// 'script',{},
// `
// window.dataLayer = window.dataLayer || [];
// function gtag(){dataLayer.push(arguments);}
// gtag('js', new Date());
// gtag('config', 'G-3ZNNG02JRB');
// `
// ],
// 百度统计代码(不生效,暂时弃用)
// [
// 'script',{},
// `
// var _hmt = _hmt || [];
// (function() {
// var hm = document.createElement("script");
// hm.src = "https://hm.baidu.com/hm.js?d6bf16d55ae32b3e91abf80026997d55";
// var s = document.getElementsByTagName("script")[0];
// s.parentNode.insertBefore(hm, s);
// })();
// `
// ],
],
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: 代码已经复制到剪贴板'
}],
'vuepress-plugin-mermaidjs',
// // 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',
editLinks: true,
sidebarDepth: 0,
//smoothScroll: true,
locales: {
"/": {
label: "简体中文",
selectText: "Languages",
editLinkText: "关注GitHub知识库",
lastUpdated: "上次更新",
logo: `/favicon.ico`,
nav: [{
text: '导读',
link: '/md/other/guide-to-reading.md'
},
{
text: '架构',
items: [{
text: '设计原则',
items: [{
text: '设计原则概述',
link: '/md/design/01-单一职责原则.md'
},]
},
{
text: '设计模式',
items: [{
text: '模板方法设计模式(Template Pattern)',
link: '/md/design/template-pattern'
},]
},
{
text: '重构',
items: [{
text: '00-软件架构权衡-我们为什么以及如何进行权衡?',
link: '/md/design/00-软件架构权衡-我们为什么以及如何进行权衡?.md'
},]
},
{
text: '大厂业务架构',
items: [{
text: '00-聚合支付架构',
link: '/md/biz-arch/00-聚合支付架构从零到一'
},]
},
{
text: '系统设计',
items: [{
text: '00-优惠券系统设计',
link: '/md/biz-arch/00-优惠券系统设计 Coupon System'
},]
},
{
text: 'DDD',
items: [{
text: '00-DDD专栏规划',
link: '/md/DDD/00-DDD专栏规划.md'
},
{
text: '事件驱动',
link: '/md/DDD/integrating-event-driven-microservices-with-request-response-APIs.md'
},
{
text: '00-大厂实践',
link: '/md/DDD/02-领域驱动设计DDD在B端营销系统的实践.md'
},
]
},
{
text: '数据中台',
items: [{
text: '00-新一代数据栈将逐步替代国内单一“数据中台”',
link: '/md/bigdata/00-新一代数据栈将逐步替代国内单一“数据中台”.md'
},]
},
{
text: '交易中台',
items: [{
text: '00-如何防止订单二次重复支付?',
link: '/md/trade/00-如何防止订单二次重复支付?.md'
},]
},
{
text: '商品中心',
items: [{
text: '00-商品中心的spu、sku设计.md',
link: '/md/product-center/00-商品中心的spu、sku设计.md'
},]
},
{
text: '用户画像',
items: [{
text: '01-DMP系统简介.md',
link: '/md/biz-arch/01-DMP系统简介.md'
},]
},
{
text: '低代码',
items: [{
text: '为什么“低代码”是未来趋势?.md',
link: '/md/low-code/为什么“低代码”是未来趋势?.md'
},]
},
]
},
{
text: '项目',
items: [{
text: '12306',
items: [{
text: '项目介绍',
link: '/md/12306/12306-basic-info.md'
}]
},
{
text: 'DDD商城',
items: [{
text: '什么是DDD商城',
link: '/md/ddd-mall/什么是DDD商城.md'
}]
},
{
text: '风控系统引擎',
items: [{
text: '风控引擎架构设计',
link: '/md/risk-control/risk-control-engine-architecture-design.md'
}]
},
{
text: 'Go微服务网关专栏概述',
items: [{
text: 'Go微服务网关专栏概述',
link: '/md/go-gateway/00-Go微服务网关专栏概述.md'
}]
},
]
},
{
text: '框架',
items: [{
text: 'RPC',
items: [{
text: '熔断限流',
link: '/md/rpc/熔断限流.md'
},]
},
{
text: 'Netty',
items: [{
text: 'Netty基础',
link: '/md/netty/netty-basic-components.md'
},
{
text: 'Netty实战',
link: '/md/netty/netty-off-heap-memory-leak-detection.md'
},
]
},
{
text: 'ShardingSphere',
items: [{
text: 'ShardingSphere',
link: '/md/ShardingSphere/14-ShardingSphere的分布式主键实现.md'
}]
},
{
text: 'kafka',
items: [{
text: 'kafka',
link: '/md/kafka/00-Kafka专栏大纲.md'
}]
},
{
text: 'RocketMQ',
items: [{
text: '消息队列基础',
link: '/md/RocketMQ/消息队列面试必问解析.md'
},]
},
{
text: 'RabbitMQ',
items: [{
text: 'RabbitMQ',
link: '/md/rabbitmq/00-RabbitMQ实战下载与安装.md'
},]
},
{
text: '工作流引擎',
items: [{
text: '00-Activiti7',
link: '/md/activiti/activiti7-introduction.md'
},]
},
{
text: 'MQTT',
items: [{
text: '00-MQTT',
link: '/md/MQTT/07-MQTT发布订阅模式介绍.md'
},]
},
{
text: 'OAuth2.0',
items: [{
text: 'OAuth2.0专栏概述',
link: '/md/security/OAuth 2.0实战-为什么要先获取授权码code.md'
},]
},
{
text: 'Arthas',
items: [{
text: 'Arthas使用',
link: '/md/arthas/Arthas使用.md'
},]
},
]
},
{
text: '后端',
items: [{
text: '并发',
items: [{
text: '并发编程专栏概述',
link: '/md/java/并发编程专栏概述.md'
},]
},
{
text: '响应式编程',
items: [{
text: '响应式编程专栏概述',
link: '/md/reactive/00-Spring响应式编程.md'
},]
},
{
text: 'JVM',
items: [{
text: 'JVM基础',
link: '/md/jvm/JVM专栏概述.md'
},]
},
{
text: 'JDK新特性',
items: [{
text: 'Oracle Java SE(标准版)支持路线图',
link: '/md/java/java-se-support-roadmap.md'
},]
},
{
text: 'IDEA新功能',
items: [{
text: 'IntelliJ IDEA 2024.1 最新变化',
link: '/md/java/IntelliJ IDEA 2024.1 最新变化'
},]
},
{
text: 'Tomcat',
items: [{
text: 'Tomcat网络编程',
link: '/md/tomcat/00-不知道这些Servlet规范、容器,还敢说自己是Java程序员.md'
},]
},
{
text: 'Spring',
items: [{
text: 'SpringMVC拦截处理器',
link: '/md/spring/03-SpringMVC拦截处理器.md'
},]
},
{
text: 'SpringBoot',
items: [{
text: '00-可能是全网最全的SpringBoot启动流程源码分析',
link: '/md/spring/00-可能是全网最全的SpringBoot启动流程源码分析.md'
},]
},
{
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: 'Seata',
link: '/md/seata/01-Seata客户端依赖坐标引入与踩坑排雷.md'
},
{
text: 'Sentinel',
link: '/md/sentinel/spring-boot-integration-with-sentinel-practical-tutorial-from-dependency-to-custom-flow-control-and-monitoring.md'
},
]
},
{
text: '大厂实践',
items: [{
text: '01-Segment为何永别微服务了?',
link: '/md/spring/spring-cloud/practise/01-Segment为何永别微服务了?.md'
},]
},
]
},
{
text: '数据库',
items: [{
text: 'MySQL',
items: [{
text: '00-MySQL专栏大纲',
link: '/md/mysql/00-MySQL专栏大纲.md'
}]
},
{
text: 'Redis',
items: [{
text: '基础',
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: 'HBase',
items: [{
text: 'HBase概述',
link: '/md/hbase/hbase-scan.md'
}]
},
{
text: 'Neo4j',
items: [{
text: 'Neo4j:图数据库的革命性力量',
link: '/md/neo4j/neo4j-revolutionary-power-of-graph-databases.md'
}]
},
{
text: '分布式数据库',
items: [{
text: '查询执行引擎:如何让聚合计算加速?',
link: '/md/distdb/21-查询执行引擎:加速聚合计算加速.md'
}]
},
]
},
{
text: '大数据',
items: [{
text: '大数据平台',
items: [{
text: '00-互联网大厂的大数据平台架构',
link: '/md/bigdata/大数据平台架构.md'
},]
},
{
text: '数据中台',
items: [{
text: '01-大数据的尽头是数据中台吗?',
link: '/md/bigdata/01-大数据的尽头是数据中台吗?.md'
}]
},
{
text: 'Hadoop',
items: [{
text: '00-安装下载Hadoop',
link: '/md/bigdata/安装下载Hadoop.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: 'Flink',
items: [{
text: 'Flink实战-概述',
link: '/md/flink/01-Flink实战-概述.md'
},]
},
]
},
{
text: '云原生',
items: [{
text: 'Go',
items: [{
text: '00-Go概述',
link: '/md/go/00-Go概述.md'
}]
},
{
text: 'Docker',
items: [{
text: 'Docker基础命令大全',
link: '/md/docker/00-Docker基础命令大全.md'
}]
},
{
text: 'k8s',
items: [{
text: 'Kubernetes的基本架构',
link: '/md/k8s/00-Kubernetes的基本架构.md'
}]
},
{
text: 'ServerLess',
items: [{
text: 'serverless-is-a-scam',
link: '/md/serverless/serverless-is-a-scam.md'
}]
},
{
text: '监控',
items: [{
text: '00-你居然还去服务器上捞日志,搭个日志收集系统难道不香么!',
link: '/md/monitor/00-你居然还去服务器上捞日志,搭个日志收集系统难道不香么!.md'
}]
},
]
},
{
text: '音视频',
items: [{
text: '基础',
items: [{
text: '音视频小白秒变大神?看完这条学习路线就够了!',
link: '/md/ffmpeg/audio-video-roadmap.md'
}]
},]
},
{
text: '数分',
items: [{
text: '数分基础',
items: [{
text: '为啥要学习数据分析?',
link: '/md/data-analysis/basic/为啥要学习数据分析?.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/basic/00-数据结构与算法专栏大纲.md'
},]
},
{
text: '算法的工程应用',
items: [{
text: '哈希算法原来有这么多应用场景!',
link: '/md/algorithm/practise/哈希算法原来有这么多应用场景!.md'
},]
},
{
text: '大厂算法面试',
items: [{
text: '00-阿里秋招高频算法题汇总-基础篇',
link: '/md/algorithm/leetcode/00-阿里秋招高频算法题汇总-基础篇.md'
},]
},
{
text: '常见攻击手段',
items: [{
text: '常见攻击手段概述',
link: '/md/security/OAuth 2.0实战-为什么要先获取授权码code.md'
},]
},
]
},
{
text: '面试',
link: '/md/zqy/面试题/01-分布式技术面试实战.md'
},
{
text: 'AI',
items: [{
text: 'Python基础',
link: '/md/python/00-macOS和Linux安装和管理多个Python版本'
},
{
text: 'AI算法',
link: '/md/AI/ml/01-人工智能概要'
},
{
text: 'AIGC应用开发',
link: '/md/AI/AI大模型企业应用实战'
},
{
text: 'LangChain4j',
link: '/md/AI/langchain4j/01-intro'
},
{
text: 'MCP',
link: '/md/AI/mcp/mcp-fad-or-fixture'
},
{
text: '大模型发展',
link: '/md/AI/llm/GPTs'
},
{
text: 'Prompt工程',
link: '/md/AI/prompt/01-Prompt网站'
},
{
text: 'AI Agent',
link: '/md/AI/agent/changelog-cursor'
},
]
},
{
text: 'Vue',
items: [{
text: '01-Vue开发实战',
link: '/md/vue/01-Vue开发实战.md'
},]
},
{
text: '区块链',
items: [{
text: '区块链核心概念',
link: '/md/chain/00-区块链专栏概述.md'
},
{
text: '百度联盟链XuperChain',
link: '/md/chain/03-百度联盟链Xuperchain核心概念.md'
},
{
text: 'Flow平台实战',
link: '/md/chain/02-认识Flow Cadence.md'
},
{
text: '以太坊区块链',
link: '/md/chain/01-以太坊智能合约与高级语言.md'
},
]
},
{
text: '职业',
items: [{
text: '职业规划',
link: '/md/career/为什么中国的程序员有35岁危机'
},
{
text: '晋升',
link: '/md/career/p6-promotion-guide'
},
{
text: '职场',
link: '/md/career/经常被压缩开发时间,延期还要背锅,如何破局?'
},
{
text: '书单',
link: '/md/career/Java-reading-list'
},
{
text: '00-如何学习项目管理专栏',
link: '/md/mgr/00-如何学习项目管理专栏.md'
},
]
},
{
text: '副业',
items: [{
text: '副业',
link: '/md/sideline/16-精益独立开发实践.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",
"mianjing/01-饿了么一面.md",
"mianjing/02-美团优选后端一面.md",
"mianjing/03.腾讯后端一面.md",
"mianjing/04.美团优选后端一面.md",
"mianjing/05.携程暑期实习一面.md",
"mianjing/06.携程暑期实习二面.md",
]
},
{
title: "架构设计",
collapsable: false,
sidebarDepth: 0,
children: [
"jiagou/01-B站评论系统架构设计.md",
"jiagou/02-该从哪些方面提升系统的吞吐量?.md"
]
}
],
"/md/biz-arch/": [{
title: "大厂业务架构",
collapsable: false,
sidebarDepth: 0,
children: [
"00-聚合支付架构从零到一",
"01-供应链域数据中台设计",
"02-供应链采购视角的业务系统架构",
"03-客服平台架构实践",
"04-数据质量中心系统设计",
"05-大厂CRM系统架构优化实战",
"06-运营后台系统设计",
"07-大厂报价查询系统性能优化之道",
"08-视频推荐索引构建",
"小游戏的大促实践",
"事件中心架构概述",
"高性能排名系统的核心架构原理,架构师必看!",
]
},
{
title: "系统设计",
collapsable: false,
sidebarDepth: 0,
children: [
"00-优惠券系统设计 Coupon System",
"设计消息通知系统(Notification System)",
"System design: Uber",
"短链系统设计(design tiny url)",
"打造一个高并发的十万用户 IM 聊天系统,你需要了解这些架构设计技巧!",
"netflixs-distributed-counter-abstraction",
"data-gateway-a-platform-for-growing-and-protecting-the-data-tier",
"enhancing-netflix-reliability-with-service-level-prioritized-load-shedding",
"title-launch-observability-at-netflix-scale",
"cloud-efficiency-at-netflix",
"linkedin-architecture-which-enables-searching-a-message-within-150ms",
"how-meta-improved-their-cache-consistency-to-99-99999999",
]
},
{
title: "用户画像",
collapsable: false,
sidebarDepth: 0,
children: [
"01-DMP系统简介",
"05-用户画像是什么?",
"06-构建高质量的用户画像",
"07-用户画像和特征工程",
]
},
{
title: "低代码",
collapsable: false,
sidebarDepth: 0,
children: [
"为什么“低代码”是未来趋势?",
"01-低代码平台到底是什么样的?",
]
},
],
"/md/mgr/": [{
title: "项目管理",
collapsable: false,
sidebarDepth: 0,
children: [
"00-如何学习项目管理专栏",
"00-咋带领团队做成事?",
"01-避免新手常犯的项目管理错误",
]
},
{
title: "技术管理",
collapsable: false,
sidebarDepth: 0,
children: [
"00-新一代数据栈将逐步替代国内单一“数据中台”",