├── LICENSE ├── Makefile ├── README.md ├── README.md.j2 ├── benchmarks_test.go ├── make_benchmarks.py ├── meta.py ├── packages.yaml ├── results ├── DecodeString.stat ├── EncodeInt.stat ├── EncodeString.stat └── meta.out └── util_test.go /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmcloughlin/geohashbench/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmcloughlin/geohashbench/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmcloughlin/geohashbench/HEAD/README.md -------------------------------------------------------------------------------- /README.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmcloughlin/geohashbench/HEAD/README.md.j2 -------------------------------------------------------------------------------- /benchmarks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmcloughlin/geohashbench/HEAD/benchmarks_test.go -------------------------------------------------------------------------------- /make_benchmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmcloughlin/geohashbench/HEAD/make_benchmarks.py -------------------------------------------------------------------------------- /meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmcloughlin/geohashbench/HEAD/meta.py -------------------------------------------------------------------------------- /packages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmcloughlin/geohashbench/HEAD/packages.yaml -------------------------------------------------------------------------------- /results/DecodeString.stat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmcloughlin/geohashbench/HEAD/results/DecodeString.stat -------------------------------------------------------------------------------- /results/EncodeInt.stat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmcloughlin/geohashbench/HEAD/results/EncodeInt.stat -------------------------------------------------------------------------------- /results/EncodeString.stat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmcloughlin/geohashbench/HEAD/results/EncodeString.stat -------------------------------------------------------------------------------- /results/meta.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmcloughlin/geohashbench/HEAD/results/meta.out -------------------------------------------------------------------------------- /util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmcloughlin/geohashbench/HEAD/util_test.go --------------------------------------------------------------------------------