You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We should log the version of Go for comparisons (using logs) to be meaningful.
Go 1.16 and Go 1.17 have different performance such as ns/op and allocs/op for the same code. For example, Go 1.17 can reportedly be 10% faster for some code. However, Go 1.17 can use more allocs/op in some other code.
Problem
We should log the version of Go for comparisons (using logs) to be meaningful.
Go 1.16 and Go 1.17 have different performance such as
ns/op
andallocs/op
for the same code. For example, Go 1.17 can reportedly be 10% faster for some code. However, Go 1.17 can use moreallocs/op
in some other code.The Proposed Solution
Log the version of Go using
runtime.Version()
.Optionally, rename :
In cmd/execution/main.go:
The text was updated successfully, but these errors were encountered: