2021-11-04 02:35:56 +00:00
|
|
|
# Logging with color and format string
|
|
|
|
|
|
|
|
## Test
|
|
|
|
|
|
|
|
Mem: `go test -o tests/test.exe -memprofile tests/mem && go tool pprof -http : tests/mem`
|
2021-11-05 07:41:54 +00:00
|
|
|
Cpu: `go test -o tests/test.exe -cpuprofile tests/cpu && go tool pprof -http : tests/cpu`
|
|
|
|
|
|
|
|
## Bench
|
|
|
|
|
|
|
|
```
|
2021-11-05 08:00:34 +00:00
|
|
|
go test -bench . -run none --benchmem
|
2021-11-05 07:41:54 +00:00
|
|
|
v0.0.1
|
|
|
|
BenchmarkDefault-8 8512 158272 ns/op
|
|
|
|
BenchmarkSub1-8 6140 166344 ns/op
|
|
|
|
BenchmarkDefault-8 6190 189078 ns/op 19522 B/op 387 allocs/op
|
|
|
|
BenchmarkSub1-8 6222 200761 ns/op 20511 B/op 435 allocs/op
|
|
|
|
|
2021-11-05 08:00:34 +00:00
|
|
|
go test -bench . -run none --benchmem
|
2021-11-05 07:41:54 +00:00
|
|
|
test(v0.0.2)
|
|
|
|
BenchmarkDefault-8 12410 109143 ns/op
|
|
|
|
BenchmarkSub1-8 10000 113340 ns/op
|
|
|
|
BenchmarkDefault-8 12186 112974 ns/op 21944 B/op 303 allocs/op
|
|
|
|
BenchmarkSub1-8 10000 114026 ns/op 22702 B/op 363 allocs/op
|
|
|
|
```
|