mirror of
https://github.com/tmrts/go-patterns.git
synced 2024-11-22 04:56:09 +03:00
39 lines
729 B
Markdown
39 lines
729 B
Markdown
|
# Timing Functions
|
||
|
|
||
|
When optimizing code, sometimes a quick and dirty time measurement is required
|
||
|
as opposed to utilizing profiler tools/frameworks to validate assumptions.
|
||
|
|
||
|
Time measurements can be performed by utilizing `time` package and `defer` statements.
|
||
|
|
||
|
## Implementation
|
||
|
|
||
|
```go
|
||
|
package profile
|
||
|
|
||
|
import (
|
||
|
"time"
|
||
|
"log"
|
||
|
)
|
||
|
|
||
|
func Duration(invocation time.Time, name string) {
|
||
|
elapsed := time.Since(invocation)
|
||
|
|
||
|
log.Printf("%s lasted %s", name, elapsed)
|
||
|
}
|
||
|
```
|
||
|
|
||
|
## Usage
|
||
|
|
||
|
```go
|
||
|
func IntFactorial(x big.Int) *big.Int {
|
||
|
defer profile.Duration(time.Now(), "IntFactorial")
|
||
|
|
||
|
y := big.NewInt(1)
|
||
|
for one := big.NewInt(1); x.Sign() > 0; x.Sub(x, one) {
|
||
|
y.Mul(y, x)
|
||
|
}
|
||
|
|
||
|
return x.Set(y)
|
||
|
}
|
||
|
```
|