Skip to content

Commit 50a6b73

Browse files
committed
perf:精简专栏目录
1 parent 2c1f3d3 commit 50a6b73

12 files changed

+1407
-750
lines changed

docs/.vuepress/config.js

Lines changed: 51 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,29 @@ module.exports = {
110110
},
111111
{
112112
text: '架构',
113-
items: [{
113+
items: [
114+
{
115+
text: '设计原则',
116+
items: [{
117+
text: '设计原则概述',
118+
link: '/md/kafka/Kafka门派知多少.md'
119+
}, ]
120+
},
121+
{
122+
text: '设计模式',
123+
items: [{
124+
text: '模板方法设计模式(Template Pattern)',
125+
link: '/md/design/模板方法设计模式(Template Pattern).md'
126+
}, ]
127+
},
128+
{
129+
text: '重构',
130+
items: [{
131+
text: '00-软件架构权衡-我们为什么以及如何进行权衡?',
132+
link: '/md/design/00-软件架构权衡-我们为什么以及如何进行权衡?.md'
133+
}, ]
134+
},
135+
{
114136
text: '业务架构',
115137
items: [{
116138
text: '00-聚合支付架构',
@@ -165,32 +187,6 @@ module.exports = {
165187
]
166188
},
167189

168-
{
169-
text: '重构',
170-
items: [{
171-
text: '重构',
172-
items: [{
173-
text: '00-软件架构权衡-我们为什么以及如何进行权衡?',
174-
link: '/md/design/00-软件架构权衡-我们为什么以及如何进行权衡?.md'
175-
}, ]
176-
},
177-
{
178-
text: '设计原则',
179-
items: [{
180-
text: '设计原则概述',
181-
link: '/md/kafka/Kafka门派知多少.md'
182-
}, ]
183-
},
184-
{
185-
text: '设计模式',
186-
items: [{
187-
text: '模板方法设计模式(Template Pattern)',
188-
link: '/md/design/模板方法设计模式(Template Pattern).md'
189-
}, ]
190-
},
191-
]
192-
},
193-
194190
{
195191
text: '管理',
196192
items: [{
@@ -332,8 +328,8 @@ module.exports = {
332328
{
333329
text: 'JDK',
334330
items: [{
335-
text: 'JDK22新特性',
336-
link: '/md/java/JDK22新特性.md'
331+
text: 'Oracle Java SE(标准版)支持路线图',
332+
link: '/md/java/java-se-support-roadmap.md'
337333
}, ]
338334
},
339335

@@ -369,12 +365,9 @@ module.exports = {
369365
link: '/md/arthas/Arthas使用.md'
370366
}, ]
371367
},
372-
]
373-
},
374368

375-
{
376-
text: '分布式',
377-
items: [{
369+
370+
{
378371
text: 'Dubbo',
379372
items: [{
380373
text: '01-互联网架构的发展历程',
@@ -437,7 +430,6 @@ module.exports = {
437430
link: '/md/spring/spring-cloud/practise/01-Segment为何永别微服务了?.md'
438431
}, ]
439432
},
440-
441433
]
442434
},
443435

@@ -475,6 +467,14 @@ module.exports = {
475467
}]
476468
},
477469

470+
{
471+
text: 'Neo4j',
472+
items: [{
473+
text: 'Neo4j:图数据库的革命性力量',
474+
link: '/md/neo4j/neo4j-revolutionary-power-of-graph-databases.md'
475+
}]
476+
},
477+
478478
{
479479
text: '分布式数据库',
480480
items: [{
@@ -1032,7 +1032,9 @@ module.exports = {
10321032
"01-JVM虚拟机-上篇",
10331033
"02-JVM虚拟机-下篇",
10341034
"00-JDK为何自己首先破坏双亲委派模型",
1035+
"00-G1垃圾收集器的日志格式",
10351036
"Metadata GC Threshold in Java",
1037+
"对象内存分配及Minor GC和Full GC全过程",
10361038
"高并发BI系统避免频繁Y-GC",
10371039
"线上频繁Full GC,原来是外包同学不合理设置JVM参数!",
10381040
"Java NIO为何导致堆外内存OOM了?",
@@ -1045,6 +1047,8 @@ module.exports = {
10451047
collapsable: false,
10461048
sidebarDepth: 0,
10471049
children: [
1050+
"java-se-support-roadmap",
1051+
"jdk14-new-features-complete-guide",
10481052
"JDK21新特性",
10491053
"JDK22新特性",
10501054
"IntelliJ IDEA 2024.1 最新变化",
@@ -1334,6 +1338,16 @@ module.exports = {
13341338
"为啥适合OLAP?",
13351339
]
13361340
}],
1341+
1342+
"/md/neo4j/": [{
1343+
title: "Neo4j",
1344+
collapsable: false,
1345+
sidebarDepth: 0,
1346+
children: [
1347+
"neo4j-revolutionary-power-of-graph-databases",
1348+
]
1349+
}],
1350+
13371351
"/md/distdb/": [{
13381352
title: "分布式数据库",
13391353
collapsable: false,
@@ -1483,6 +1497,7 @@ module.exports = {
14831497
"05-账本模型",
14841498
"06-智能合约",
14851499
"07-网络与共识",
1500+
"blockchain-smart-contract-helloworld-project",
14861501
]
14871502
}],
14881503

@@ -1617,6 +1632,7 @@ module.exports = {
16171632
"建造者模式",
16181633
"代理模式Proxy Pattern",
16191634
"适配器模式",
1635+
"门面模式",
16201636
]
16211637
},
16221638
],

0 commit comments

Comments
 (0)