github.com/go-board/x-go@v0.1.2-0.20220610024734-db1323f6cb15/xdebug/README.md (about) 1 # XDebug 2 3 一些调试工具。 4 5 ## Dump 美化输出 6 7 ## Gc 垃圾收集 http endpoint handler 8 ```go 9 type gc struct{} 10 11 func (gc) ServeHTTP(http.ResponseWriter, *http.Request) { ... } 12 ``` 13 14 ## PProf 性能调优 15 ```go 16 // 注册pprof handler 到 *http.ServeMux上面 17 func PProfHandlers(h *http.ServeMux) 18 ```