Skip to content

Commit 4e6143b

Browse files
committed
chore: refactor develop content
1 parent f5db119 commit 4e6143b

40 files changed

Lines changed: 60 additions & 65 deletions

docs/base/cs/computer-network/application-layer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ SFTP 支持丰富的文件操作,包括目录遍历、断点续传、文件删
9999

100100
## HTTP 协议
101101

102-
为了更快速地响应小文件,超文本传输协议 (HyperText Transfer Protocol, HTTP) 被设计了出来。它以 [HTML](../../../develop/front-end/html.md) 作为统一内容载体,客户端基于解释器(如浏览器)解析并呈现给用户。HTTP 工作在应用层,传输层使用 TCP 协议,服务器默认监听 80 端口(HTTPS 为 443)。
102+
为了更快速地响应小文件,超文本传输协议 (HyperText Transfer Protocol, HTTP) 被设计了出来。它以 [HTML](../../../develop/frontend/html.md) 作为统一内容载体,客户端基于解释器(如浏览器)解析并呈现给用户。HTTP 工作在应用层,传输层使用 TCP 协议,服务器默认监听 80 端口(HTTPS 为 443)。
103103

104104
HTTP 核心特性是无状态。服务器不会保存客户端的历史请求状态,每个请求都被视为相互独立。这样实现简单、易扩展、容错性好,但是同一客户端的重复请求会带来额外开销,实际工程中通常通过 Cookie 等机制在应用层模拟状态。
105105

docs/contributing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ title: 参与贡献
3636

3737
## 方法三:本地部署
3838

39-
该方法适合本地预览你的修改。请确保本地已经安装好 [Git](./develop/tools/git/index.md#安装-git)[Python](./develop/back-end/python/index.md#安装-python),具体操作如下:
39+
该方法适合本地预览你的修改。请确保本地已经安装好 [Git](./develop/operation/git/index.md#安装-git)[Python](./develop/backend/python/index.md#安装-python),具体操作如下:
4040

4141
1)进入项目的 [GitHub](https://github.com/Explorer-Dong/wiki) 地址,点击右上角的 `Fork` 按钮并确认:
4242

@@ -51,7 +51,7 @@ cd wiki
5151

5252
3)配置 Python 环境:
5353

54-
项目使用 uv 进行管理,请先 [安装 uv](./develop/back-end/python/index.md#工具的安装与配置)。接下来同步环境即可:
54+
项目使用 uv 进行管理,请先 [安装 uv](./develop/backend/python/index.md#工具的安装与配置)。接下来同步环境即可:
5555

5656
=== "Windows"
5757

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ Redis (Remote Dictionary Server) 是一个开源的、基于内存的键值对
102102

103103
- 存储介质:全内存操作,读写性能极高(10W+ TPS);
104104
- 数据模型:Key 是字符串,Value 支持多种抽象数据结构;
105-
- 执行模型:[单线程异步模型](../back-end/python/async-lib.md)。通过 I/O 多路复用技术监听客户端连接,命令执行是原子的,避免了多线程环境下的锁竞争与上下文切换开销;
105+
- 执行模型:[单线程异步模型](./async-lib.md)。通过 I/O 多路复用技术监听客户端连接,命令执行是原子的,避免了多线程环境下的锁竞争与上下文切换开销;
106106

107107
> [!note]
108108
>

0 commit comments

Comments
 (0)