Last active
May 2, 2018 01:17
-
-
Save otiai10/cfdc68d20c78b094ef4508adf27afdbe to your computer and use it in GitHub Desktop.
Measure heap with pprof
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"log" | |
"os" | |
"path/filepath" | |
"runtime/pprof" | |
"time" | |
"github.com/otiai10/gosseract" | |
) | |
const ( | |
repeat = 500 | |
) | |
func main() { | |
f, err := os.Create(time.Now().Format("0102_150405")) | |
if err != nil { | |
panic(err) | |
} | |
var count int | |
var clients []*gosseract.Client | |
sample := filepath.Join(os.Getenv("GOPATH"), "src/github.com/otiai10/gosseract/test/data", "001-helloworld.png") | |
log.Println("01") | |
for _ = range time.Tick(time.Millisecond * 1) { | |
client := gosseract.NewClient() | |
client.SetImage(sample) | |
_, _ = client.Text() | |
_, _ = client.HOCRText() | |
// fmt.Println(text) | |
// Hello, World! | |
count++ | |
clients = append(clients, client) | |
if count >= repeat { | |
break | |
} | |
if count%100 == 0 { | |
log.Println(count) | |
} | |
} | |
log.Println("02") | |
for _ = range time.Tick(time.Millisecond * 1) { | |
count-- | |
if count == 0 { | |
break | |
} | |
} | |
for _, c := range clients { | |
(*c).Close() | |
} | |
log.Println("03") | |
for _ = range time.Tick(time.Millisecond * 1) { | |
if count > repeat { | |
break | |
} | |
count++ | |
} | |
log.Println("04") | |
if err := pprof.WriteHeapProfile(f); err != nil { | |
panic(err) | |
} | |
log.Println("05") | |
f.Close() | |
} |
Author
otiai10
commented
May 1, 2018
•
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment