Commit Graph

32 Commits (78976c1f42149f048492548a9b4e6a60f39516bc)

Author SHA1 Message Date
Vinícius Garcia 78976c1f42 Update adapters to use version v1.7.1 2023-04-05 22:33:50 -03:00
Vinícius Garcia c676e8f799 Update adapters to use version v1.7.0 2022-12-21 22:25:23 -03:00
Vinícius Garcia 24599e6644 Improve NewWithAdapter to expect a dialect instead of a driver name 2022-12-21 21:23:54 -03:00
Vinícius Garcia 9f2ffa84f6 Update adapters to use version v1.6.0 2022-12-17 15:10:13 -03:00
Vinícius Garcia 340a320281 Update adapters to use version v1.5.1 2022-11-29 09:27:49 -03:00
Vinícius Garcia 13c6f3cbc6 Update adapters to use version v1.5.0 2022-11-13 14:14:18 -03:00
Vinícius Garcia af37427192 Update adapters to use version v1.4.13 2022-11-13 12:56:40 -03:00
Vinícius Garcia 6c0f8ae6b1 Update all adapters to use latest version of KSQL 2022-11-13 11:02:15 -03:00
Vinícius Garcia 60233e04a8 Add sqlx/prep-stmt benchmark 2022-09-29 14:11:08 -03:00
Vinícius Garcia 3d34bae47e Add sqlboiler to benchmarks 2022-07-26 23:20:23 -03:00
Vinícius Garcia ed1e5ec27d Minor refactor on benchmarks organization 2022-07-26 22:17:25 -03:00
Vinícius Garcia fc1b4d9a3b Add sqlc/prep-stmt to Benchmark 2022-07-26 21:52:54 -03:00
Vinícius Garcia 12c774a26f Add sqlc to benchmarks 2022-07-26 20:54:28 -03:00
Vinícius Garcia 32470ddce4 Update adapters to use latest ksql version 2022-07-19 14:15:48 -03:00
Vinícius Garcia 7ec3ef011d Remove dependency on ditointernet/go-assert 2022-07-16 13:31:38 -03:00
Vinícius Garcia be9f686a9a Update benchmarks to test ksql on its most common use-case
Before this commit we were not benchmarking ksql with the
"omit-select" feature.

This could lead people to say that this feature is actually
expensive, but it really isn't so I just updated the benchmarks
to always run with this feature.

Before doing this change I actually put both features together
on the benchmark to compare them and these are the results:

```
ksql/sql-adapter/single-row-12               17186   143286 ns/op
ksql/sql-adapter-with-omit/single-row-12     16502   142893 ns/op

ksql/sql-adapter/multiple-rows-12            15361   153890 ns/op
ksql/sql-adapter-with-omit/multiple-rows-12  15360   156075 ns/op

ksql/pgx-adapter/single-row-12               33894    68332 ns/op
ksql/pgx-adapter-with-omit/single-row-12     34563    68861 ns/op

ksql/pgx-adapter/multiple-rows-12            29677    79196 ns/op
ksql/pgx-adapter-with-omit/multiple-rows-12  28934    80422 ns/op
```

Please note that benchmarks usually run slighly slower or faster
on each attempt, so small differences like the ones presented
above are really hard to interpret.
2022-05-31 09:19:24 -03:00
Vinícius Garcia e78fced5e6 Update all subpackages to use latest ksql version 2022-04-22 19:16:53 -03:00
Vinícius Garcia e5d1de061b Since golint is deprecated we upgraded to staticheck instead 2022-04-20 15:37:26 -03:00
Vinícius Garcia b44c7e8500 Add kpgx.NewFromPgxPool() for facilitating more complicated configs 2022-04-11 19:41:56 -03:00
Vinícius Garcia 18377f18f9 Try to fix codecov on CI 2022-03-15 19:55:08 -03:00
Vinícius Garcia b6986e5fd1 Fix benchmarks submodule 2022-03-15 19:41:34 -03:00
Vinícius Garcia 8eb3c86410 Refactor all adapters as separate modules 2022-03-15 13:03:41 -03:00
Vinícius Garcia 6c90673bef Fix benchmarks to stop using deprecated constructor 2022-01-20 18:53:35 -03:00
Vinícius Garcia a394fd0815 Move some functions to the internal package 2022-01-11 19:00:22 -03:00
Vinícius Garcia 545ea48f0c Add benchmarks for the database/sql library using prepared-statements 2021-11-16 21:17:57 -03:00
Vinícius Garcia a5e71303cb Fix problem on the Querying benchmark for `sql`
By mistake (I forgot to delete a letter) I was calling
`sqlx.Open()` instead of `sql.Open()`, which invalidates
the benchmark.

This is now fixed.
2021-11-16 19:51:16 -03:00
Vinícius Garcia 25781352cb Add adapters for each possible db technology 2021-11-14 14:54:01 -03:00
Vinícius Garcia b5a1f92fb8 Add pgx to benchmark 2021-11-14 11:13:35 -03:00
Vinícius Garcia 3424652db3 Add benchmark for database/sql 2021-11-14 01:36:55 -03:00
Vinícius Garcia 23692d13d4 Add gorm to benchmarks 2021-11-14 01:10:57 -03:00
Vinícius Garcia e2899617f4 Fix benchmarks/go.mod so it always point the the local ksql copy 2021-11-14 00:22:58 -03:00
Vinícius Garcia e2705f2b8e Move benchmarks to submodule in order to reduce the go.mod deps 2021-11-13 23:59:33 -03:00