https://github.com/dmeijboom/training-concurrency-3
https://github.com/dmeijboom/training-concurrency-3
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dmeijboom/training-concurrency-3
- Owner: dmeijboom
- Created: 2023-10-15T20:42:06.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-26T20:28:11.000Z (6 months ago)
- Last Synced: 2025-02-15T08:13:26.403Z (5 months ago)
- Language: Go
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Exercise 3
```
go test -gcflags "-N -l" -cpuprofile cpu.out -memprofile mem.out --bench .
``````
go tool pprof -http :9000 cpu.out
``````
go tool pprof -http :9000 mem.out
```