Skip to content

Commit fbc6d28

Browse files
committed
docs:新增 并发/MQ/Redis 专栏
1 parent be99520 commit fbc6d28

4 files changed

Lines changed: 650 additions & 12 deletions

File tree

docs/.vuepress/config.js

Lines changed: 45 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -114,17 +114,25 @@ module.exports = {
114114
{text: '基础篇', link: '/md/netty/base/ChannelPipeline接口.md'},
115115
]
116116
},
117-
// {
118-
// text: '设计模式',
119-
// items: [
120-
// ]
121-
// },
122-
// {
123-
// text: '并发',
124-
// items: [
125-
// {text: '00-Java并发编程', link: '/md/concurrency/00-Java并发编程.md'},
126-
// ]
127-
// },
117+
{
118+
text: '消息队列',
119+
items: [
120+
{text: 'Kafka', items: [
121+
{text: '基于kafka实现延迟队列',link: '/md/kafka/15-基于kafka实现延迟队列.md'},
122+
123+
]},
124+
{text: 'RocketMQ', items: [
125+
{text: '00-RocketMQ',link: '/md/kafka/15-基于kafka实现延迟队列.md'},
126+
127+
]},
128+
]
129+
},
130+
{
131+
text: '并发',
132+
items: [
133+
{text: '00-Java并发编程', link: '/md/concurrency/00-Java并发编程.md'},
134+
]
135+
},
128136
{
129137
text: 'Dubbo',
130138
link: '/md/Dubbo/01-互联网架构的发展历程.md'
@@ -143,6 +151,12 @@ module.exports = {
143151
{text: '00-亿级数据量商品系统的SQL调优实战', link: '/md/mysql/00-亿级数据量商品系统的SQL调优实战.md'}
144152
]
145153
},
154+
{
155+
text: 'Redis',
156+
items: [
157+
{text: '00-数据结构的最佳实践', link: '/md/redis/00-数据结构的最佳实践.md'}
158+
]
159+
},
146160
{
147161
text: 'Docker',
148162
items: [
@@ -379,6 +393,26 @@ module.exports = {
379393
]
380394
}
381395
],
396+
"/md/kafka": [
397+
{
398+
title: "Kafka",
399+
collapsable: false,
400+
sidebarDepth: 0,
401+
children: [
402+
"15-基于kafka实现延迟队列.md"
403+
]
404+
}
405+
],
406+
"/md/redis": [
407+
{
408+
title: "Redis",
409+
collapsable: false,
410+
sidebarDepth: 0,
411+
children: [
412+
"00-数据结构的最佳实践.md"
413+
]
414+
}
415+
],
382416
}
383417
}
384418
}

docs/md/biz-arch/09-交易中台-如何防止订单二次重复支付?.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 00-如何防止订单二次重复支付?
1+
# 09-如何防止订单二次重复支付?
22

33
## 1 背景
44

docs/md/kafka/15-基于kafka实现延迟队列.md

Whitespace-only changes.

0 commit comments

Comments
 (0)