Minor improvement on README file

pull/13/head
Vinícius Garcia 2021-11-16 21:55:09 -03:00
parent cb3d8eb572
commit 40215d8099
1 changed files with 6 additions and 1 deletions

View File

@ -508,9 +508,12 @@ read the example tests available on our [example service](./examples/example_ser
### Benchmark Comparison
The benchmark is very good, the code is, in practical terms, as fast as sqlx.
The results of the benchmark are good:
they show that ksql is in practical terms,
as fast as sqlx which was our goal from the start.
To understand the benchmark below you must know
that all tests are performed using Postgres 12.1 and
that we are comparing the following tools:
- ksql using the adapter that wraps database/sql
@ -520,6 +523,8 @@ that we are comparing the following tools:
- pgx (with pgxpool)
- gorm
For each of these tools we are running 3 different queries:
The `insert-one` query looks like:
`INSERT INTO users (name, age) VALUES ($1, $2) RETURNING id`