Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/taxintt/go-bench-sample


https://github.com/taxintt/go-bench-sample

Last synced: 15 days ago
JSON representation

Awesome Lists containing this project

README

        

# go-bench-sample

## bench
```bash
go test -bench .
```

## bench with cpu profiling
```bash

go tool pprof --text ./pprof/test.bin ./pprof/cpu.out

go test -bench . -o ./pprof/test.bin -cpuprofile ./pprof/cpu.out
```