docs(Go concurrency): 添加 Go 并发模型文档侧边栏配置

- 在侧边栏配置文件中新增“Go并发模型”章节
- 包含 Goroutine 与 GPM 调度模型等相关多个文档链接
- 移除“08Go 并发入门Goroutine 基础 GPM 线程模型实战.md”文件内容
- 优化文档结构,支持并发模型内容折叠显示与导航
This commit is contained in:
liumangmang
2025-12-18 17:44:04 +08:00
parent 8a2942d773
commit 978992c694
8 changed files with 2021 additions and 2 deletions

View File

@@ -95,6 +95,21 @@ export default sidebar({
"07从零实现 Mini 日志库.md",
],
},
{
text: "Go并发模型",
icon: "mdi:run-fast",
collapsible: true,
prefix: "Go并发模型/",
children: [
"08Goroutine与GPM调度模型.md",
"09Channel与单向Channel.md",
"10select与超时控制.md",
"11context取消与超时.md",
"12Mutex与WaitGroup.md",
"13atomic原子操作.md",
"14并发爬虫实战.md",
],
},
],
},
{