We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5075ac2 + b091c8d commit 5ff3504Copy full SHA for 5ff3504
3.4.md
@@ -22,7 +22,7 @@ Go在等待客户端请求里面是这样写的:
22
它的结构如下:
23
24
type ServeMux struct {
25
- mu sync.RWMutex //锁,由于请求设计到并发处理,因此这里需要一个锁机制
+ mu sync.RWMutex //锁,由于请求涉及到并发处理,因此这里需要一个锁机制
26
m map[string]muxEntry // 路由规则,一个string对应一个mux实体,这里的string就是注册的路由表达式
27
}
28
0 commit comments