Update benchmark on README

pull/2/head
Vinícius Garcia 2021-07-31 19:09:05 -03:00
parent e73db4a216
commit c1a44c8e56
2 changed files with 11 additions and 7 deletions

View File

@ -10,6 +10,8 @@ test: setup
bench:
go test -bench=. -benchtime=$(TIME)
@echo "Benchmark executed at: $$(date --iso)"
@echo "Benchmark executed on commit: $$(git rev-parse HEAD)"
lint: setup
@$(GOBIN)/golint -set_exit_status -min_confidence 0.9 $(path) $(args)

View File

@ -488,14 +488,16 @@ goos: linux
goarch: amd64
pkg: github.com/vingarcia/ksql
cpu: Intel(R) Core(TM) i5-3210M CPU @ 2.50GHz
BenchmarkInsert/ksql-setup/insert-one-4 4970 727724 ns/op
BenchmarkInsert/sqlx-setup/insert-one-4 4842 703503 ns/op
BenchmarkQuery/ksql-setup/single-row-4 12692 282544 ns/op
BenchmarkQuery/ksql-setup/multiple-rows-4 10000 313662 ns/op
BenchmarkQuery/sqlx-setup/single-row-4 12328 291965 ns/op
BenchmarkQuery/sqlx-setup/multiple-rows-4 10000 301910 ns/op
BenchmarkInsert/ksql-setup/insert-one-4 4442 862525 ns/op
BenchmarkInsert/sqlx-setup/insert-one-4 4269 854837 ns/op
BenchmarkQuery/ksql-setup/single-row-4 10000 325756 ns/op
BenchmarkQuery/ksql-setup/multiple-rows-4 10000 339198 ns/op
BenchmarkQuery/sqlx-setup/single-row-4 11764 305418 ns/op
BenchmarkQuery/sqlx-setup/multiple-rows-4 9534 322344 ns/op
PASS
ok github.com/vingarcia/ksql 39.995s
ok github.com/vingarcia/ksql 46.143s
Benchmark executed at: 2021-07-31
Benchmark executed on commit: e73db4a216b57c39669c1c99aa770fe7fa0199cc
```
### Running the ksql tests (for contributors)