commit | e40c708182d95d3d1333f86c0bcc1fe76cafaf80 | [log] [tgz] |
---|---|---|
author | Egon Elbre <egonelbre@gmail.com> | Mon Apr 03 12:12:20 2017 +0300 |
committer | Brad Fitzpatrick <bradfitz@golang.org> | Mon Apr 03 15:22:08 2017 +0000 |
tree | e7bc1a660c47b374be001f5c3d4b80a6ed44dfaa | |
parent | 1dffca75aeded8e38a3e5999830f6b94d57ce971 [diff] |
internal/diff: flush to disk before diffing Flush strings to disk before diffing files. Change-Id: I91c47bfe352ee833a164fa7de00341e96498bc96 Reviewed-on: https://go-review.googlesource.com/39235 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org> Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
This subrepository holds the source for various packages and tools related to performance measurement, storage, and analysis.
cmd/benchstat contains a command-line tool that computes and compares statistics about benchmarks.
cmd/benchsave contains a command-line tool for publishing benchmark results.
storage contains the https://perfdata.golang.org/ benchmark result storage system.
analysis contains the https://perf.golang.org/ benchmark result analysis system.
Both storage and analysis can be run locally; the following commands will run the complete stack on your machine with an in-memory datastore.
go get -u golang.org/x/perf/storage/localperfdata go get -u golang.org/x/perf/analysis/localperf localperfdata -addr=:8081 -view_url_base=http://localhost:8080/search?q=upload: & localperf -addr=:8080 -storage=localhost:8081
The storage system is designed to have a standardized API, and we encourage additional analysis tools to be written against the API. A client can be found in the storage package.
Contributions to Go are appreciated. See http://golang.org/doc/contribute.html.