plar / go-adaptive-radix-tree

Adaptive Radix Trees implemented in Go

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[Question]: Interpreting the benchmark results

prologic opened this issue · comments

Quick question; How do you interpret the benchmark results? It's not your typical go test -bench output and the numbers look (at first glance) absurd :)

It is a standard output of go test -bench... that has been converted to a Markdown table.
You can run go test -v -benchmem -bench=. -run=^a or make benchmark if you want to see an original output.

An explanation of the absurd numbers can be found here: https://golang.org/pkg/testing/#hdr-Benchmarks.