添加基础性能测试分析代码

This commit is contained in:
2025-03-05 18:12:26 +08:00
parent 6e2309df2d
commit 736dbff17d
11 changed files with 106 additions and 141 deletions

View File

@@ -107,7 +107,7 @@ func (s *Service) Run() {
// 清理资源
s.userConnMap.Range(func(key, value any) bool {
conn := value.(core.Conn)
conn := value.(*core.Conn)
utils.Close(conn)
return true
})