Gajus Kuizinas

Results 776 comments of Gajus Kuizinas

https://github.com/relay-tools/relay-compiler-language-typescript/issues/513

Has there been any progress on this? In case of rollup, https://www.npmjs.com/package/rollup-plugin-visualizer already produces the necessary data, but lacks visualization (their network visualization is not able to load data for...

Adding https://github.com/semantic-release/semantic-release would be nice

I am running into a need to implement this as well. I am going to write a higher level abstraction based on a principal that `client.connect()` and `pool.connect()` will be...

@brianc This would be a nice feature. Any reason it isn't supported given that we can just leverage `generic-pool` functionality for this? Would be nice to have this for compatibility...

Upon a second look, it looks like `Pool` is not using `generic-pool`, contrary to what I thought.

More context https://github.com/gajus/postgres-bridge/commit/38b69ded692775e8fefa3c53f3a30a143bc1cdc4

Here is what a switch from pg-native to pg looks over an hour's use.

90%+ of the queries are simple primary key lookups returning couple of columns, e.g. ```sql SELECT id FROM country WHERE code_alpha_2 = $1 ``` I would think that this is...

Looking at the top queries in the `pg_stat_statements`, most of them return 1 or none rows. [`maybeOne`](https://github.com/gajus/slonik#maybeone) and [`maybeOneFirst`](https://github.com/gajus/slonik#slonik-query-methods-maybeonefirst) are the most used query methods. Are there any real downsides...