Jaka Jančar

Results 42 comments of Jaka Jančar

PgBouncer has it configurable (`server_reset_query`) but it defaults to `DISCARD ALL`. PgBouncer is probably the gold standard when it comes to Postgres pooling. It’s really not about the LISTEN, but...

Yes, I think hooks are key rather than supporting every single possible reset query. Then one can subclass the postgres manager and do what they want.

Is my understanding correct that this will then require a “wrapper” around esbuild in either go or node (or another language that implements the protocol node is using), and plugins...

> You can easily do this without a separate "wrapper" package just by calling esbuild's JavaScript API **from a file with a few lines of code** Which is what I...

Hi @ebebbington, I think `deno.land/x/postgres` ([github](https://github.com/deno-postgres/deno-postgres)) is currently *the* postgres module for Deno, with an order of magnitude more usage than `pgc4d`, and probably the one you'd want to ingest....

The Rust land seems to work fine with connection pools as separate projects. Given the nuances in doing pooling right, I think it would be unfortunate if it couldn't be...

Unfortunately Deno itself does not support enough configurability in `connectTls`/`startTls` to implement this. I am familiar with `sslmode` in libpq, which is why instead of `enableTls: boolean` I named the...

TBH I'm not convinced of the benefits of a database driver including its own pool vs. just using a generic one. Fwiw, I use [olpo](https://github.com/twooster/olpo) and it works OK.

It's because Heroku uses a self-signed certificate. Pulling the certificate using `openssl s_client` and specifying `certFile` resolves the the `UnknownIssuer` error, but causes `CertNotValidForName`. This is because the cert is...

Filed an issue here: https://github.com/denoland/deno/issues/5986