Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dmeijboom/training-concurrency-3
https://github.com/dmeijboom/training-concurrency-3
Last synced: 6 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/dmeijboom/training-concurrency-3
- Owner: dmeijboom
- Created: 2023-10-15T20:42:06.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-15T21:08:56.000Z (about 1 year ago)
- Last Synced: 2025-01-03T01:14:18.794Z (8 days ago)
- Language: Go
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
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
```