From 4969180c390384ffbadf05e3120b90f49586c68f Mon Sep 17 00:00:00 2001 From: NathanFreeman <1056159381@qq.com> Date: Thu, 1 May 2025 23:02:11 +0800 Subject: [PATCH 1/3] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=B7=A6=E4=BE=A7?= =?UTF-8?q?=E8=8F=9C=E5=8D=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/zh-cn/_sidebar.md | 57 ++++++++++++++++++++-------------------- 1 file changed, 28 insertions(+), 29 deletions(-) diff --git a/public/zh-cn/_sidebar.md b/public/zh-cn/_sidebar.md index a58552a..ad96652 100644 --- a/public/zh-cn/_sidebar.md +++ b/public/zh-cn/_sidebar.md @@ -9,7 +9,7 @@ * [HTTP服务器](start/start_http_server.md) * [WebSocket服务器](start/start_ws_server.md) * [MQTT(物联网)服务器](start/start_mqtt.md) - * [执行异步任务(Task)](start/start_task.md) + * [执行异步任务](start/start_task.md) * [协程初探](start/coroutine.md) * [服务端(异步风格)](server/init.md) @@ -41,46 +41,45 @@ * [MySQL客户端](coroutine_client/mysql.md) * [Redis客户端](coroutine_client/redis.md) -* [协程 (Coroutine)](coroutine.md) +* 进程管理 (Process) + * [创建进程](process/process.md) + * [进程池](process/process_pool.md) + * [进程管理器](process/process_manager.md) + +* 线程管理 (Thread) + * [创建线程](thread/thread.md) + * [线程池](thread/pool.md) + * [方法与属性](thread/info) + * [并发Map](thread/map.md) + * [并发List](thread/arraylist.md) + * [并发Queue](thread/queue.md) + * [数据类型](thread/transfer.md) + +* [协程管理 (Coroutine)](coroutine.md) * [一键协程化](runtime.md) - * [核心API](coroutine/coroutine.md) - * [协程容器](coroutine/scheduler.md) + * [协程容器](coroutine/scheduler.md) + * [协程API](coroutine/coroutine.md) * [系统API](coroutine/system.md) - * [进程API](coroutine/proc_open.md) - * [Channel](coroutine/channel.md) - * [WaitGroup](coroutine/wait_group.md) - * [Barrier](coroutine/barrier.md) * [并发调用](coroutine/multi_call.md) * [连接池](coroutine/conn_pool.md) * [Library](library.md) * [调试协程](coroutine/gdb.md) * [编程须知](coroutine/notice.md) +* 进程/线程/协程同步 + * [锁](memory/lock.md) + * [原子计数](memory/atomic.md) + * [同步屏障](thread/barrier.md) + * [高性能共享内存](memory/table.md) + * [Channel](coroutine/channel.md) + * [WaitGroup](coroutine/wait_group.md) + * 文件异步操作 * [实现](file/engine.md) * [配置](file/setting.md) -* 线程管理 (Thread) - * [创建线程](thread/thread.md) - * [线程池(Thread\Pool)](thread/pool.md) - * [方法与属性](thread/info) - * [并发Map](thread/map.md) - * [并发List](thread/arraylist.md) - * [并发Queue](thread/queue.md) - * [同步屏障Barrier](thread/barrier.md) - * [数据类型](thread/transfer.md) - -* 进程管理 (Process) - * [创建进程](process/process.md) - * [进程池(Process\Pool)](process/process_pool.md) - * [进程管理器(Process\Manager)](process/process_manager.md) - * [高性能共享内存(Table)](memory/table.md) - -* 并发管理 - * [锁(Lock)](memory/lock.md) - * [原子计数(Atomic)](memory/atomic.md) - * [事件循环(EventLoop)](event.md) - * [定时器(Timer)](timer.md) +* [事件循环(EventLoop)](event.md) +* [定时器(Timer)](timer.md) * 其他 * [常量](consts.md) From a5dfa9a573b2eea2a24428bfeee0ef6308054e7c Mon Sep 17 00:00:00 2001 From: NathanFreeman <1056159381@qq.com> Date: Thu, 8 May 2025 22:21:44 +0800 Subject: [PATCH 2/3] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E8=8F=9C=E5=8D=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/zh-cn/_sidebar.md | 37 +++++++++++++++++++------------------ 1 file changed, 19 insertions(+), 18 deletions(-) diff --git a/public/zh-cn/_sidebar.md b/public/zh-cn/_sidebar.md index ad96652..4751d2b 100644 --- a/public/zh-cn/_sidebar.md +++ b/public/zh-cn/_sidebar.md @@ -9,7 +9,7 @@ * [HTTP服务器](start/start_http_server.md) * [WebSocket服务器](start/start_ws_server.md) * [MQTT(物联网)服务器](start/start_mqtt.md) - * [执行异步任务](start/start_task.md) + * [执行异步任务(Task)](start/start_task.md) * [协程初探](start/coroutine.md) * [服务端(异步风格)](server/init.md) @@ -41,6 +41,17 @@ * [MySQL客户端](coroutine_client/mysql.md) * [Redis客户端](coroutine_client/redis.md) +* [协程管理 (Coroutine)](coroutine.md) + * [一键协程化](runtime.md) + * [协程容器](coroutine/scheduler.md) + * [协程API](coroutine/coroutine.md) + * [系统API](coroutine/system.md) + * [并发调用](coroutine/multi_call.md) + * [连接池](coroutine/conn_pool.md) + * [Library](library.md) + * [调试协程](coroutine/gdb.md) + * [编程须知](coroutine/notice.md) + * 进程管理 (Process) * [创建进程](process/process.md) * [进程池](process/process_pool.md) @@ -55,26 +66,16 @@ * [并发Queue](thread/queue.md) * [数据类型](thread/transfer.md) -* [协程管理 (Coroutine)](coroutine.md) - * [一键协程化](runtime.md) - * [协程容器](coroutine/scheduler.md) - * [协程API](coroutine/coroutine.md) - * [系统API](coroutine/system.md) - * [并发调用](coroutine/multi_call.md) - * [连接池](coroutine/conn_pool.md) - * [Library](library.md) - * [调试协程](coroutine/gdb.md) - * [编程须知](coroutine/notice.md) - -* 进程/线程/协程同步 - * [锁](memory/lock.md) - * [原子计数](memory/atomic.md) - * [同步屏障](thread/barrier.md) - * [高性能共享内存](memory/table.md) +* 协程/进程/线程同步 * [Channel](coroutine/channel.md) * [WaitGroup](coroutine/wait_group.md) + * [协程屏障](coroutine/barrier.md) + * [锁](memory/lock.md) + * [原子计数](memory/atomic.md) + * [线程同步屏障](thread/barrier.md) + * [高性能共享内存(Table)](memory/table.md) -* 文件异步操作 +* 文件操作协程化 * [实现](file/engine.md) * [配置](file/setting.md) From 664d71e3a8f12a55c1af876757387ae0c047566c Mon Sep 17 00:00:00 2001 From: NathanFreeman <1056159381@qq.com> Date: Thu, 8 May 2025 22:32:05 +0800 Subject: [PATCH 3/3] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E8=8F=9C=E5=8D=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/zh-cn/_sidebar.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/zh-cn/_sidebar.md b/public/zh-cn/_sidebar.md index 4751d2b..71a7cf3 100644 --- a/public/zh-cn/_sidebar.md +++ b/public/zh-cn/_sidebar.md @@ -75,7 +75,7 @@ * [线程同步屏障](thread/barrier.md) * [高性能共享内存(Table)](memory/table.md) -* 文件操作协程化 +* 异步文件操作 * [实现](file/engine.md) * [配置](file/setting.md)