]> Cypherpunks repositories - gostls13.git/commit
cmd/api: make NewWatcher populate its own package and import metadata
authorBryan C. Mills <bcmills@google.com>
Fri, 20 Mar 2020 19:15:35 +0000 (15:15 -0400)
committerBryan C. Mills <bcmills@google.com>
Wed, 25 Mar 2020 19:14:38 +0000 (19:14 +0000)
commitfcb8f8384ac62eb029926bb1f3602825fa61b261
treeb3f1e440ad03f234d4ecd8f8a791b4379d43590b
parent2568d323f603417c74f3b7030a6108362234d427
cmd/api: make NewWatcher populate its own package and import metadata

This partially undoes the optimizations of CL 177597, but makes up
some of the difference by caching the package list and import metadata
and making the initial calls concurrently, including in TestMain.
That reduces the critical path from two sequential 'go list'
invocations to just one (run many times concurrently), and eliminates
the need for assumptions about the consistency of the 'std' dependency
graph across platforms (and hard-coded special cases for packages that
violate those assumptions).

In the process, this simplifies and fixes TestBenchmark (which has
been silently broken since CL 164623).

This increases 'time go tool dist test api' on my workstation from
0m8.4s / 0m13.8s / 0m1.7s to 0m10.5s / 0m23.1s / 0m5.1s,
compared to 0m12.4s / 0m23.2s / 0m4.7s before CL 177597.

(That is, this change retains about half of the wall-time speedup, but
almost none of the user-time speedup.)

Tested manually using 'go test -race -bench=. cmd/api'.

Fixes #37951

Change-Id: Icd537e035e725e1ee7c41d97da5c6651233b927e
Reviewed-on: https://go-review.googlesource.com/c/go/+/224619
Run-TryBot: Bryan C. Mills <bcmills@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Alexander Rakoczy <alex@golang.org>
src/cmd/api/goapi.go
src/cmd/api/goapi_test.go