Eray Hanoglu

Results 19 comments of Eray Hanoglu

Hi @webketje. It has been to long to remember the issue that i faced. I always use semver in my projects. If i am not wrong i ve faced the...

Here is some examples. This problem occurs frequently. https://david-dm.org/panates/putil-promisify?type=dev https://david-dm.org/panates/putil-waterfall https://david-dm.org/panates/sqb-serializer-pg https://david-dm.org/panates/sqb-serializer-pg?type=peer

Implementing an Read/Write lock algorithm would be extremely useful.

> On my tests, this issue is fixed on Node >=16.11 [issue.zip](https://github.com/facebook/jest/files/10712007/issue.zip)

Hi, Do not stringify the object. Just pass the object in the params. ```js const doc = { flag: true }; await con.query('INSERT INTO model1 (doc) VALUES ($1)', {params: [doc]});...

`pg` uses _text format_ for data transfer which is very slow and cumbersome. `postgresql-client` uses _binary format_ which is fast and performant. This is why we created this library. In...

You can find some benchmark result in the internet. Here is some links that i found. [https://www.postgresql.org/message-id/[email protected]](https://www.postgresql.org/message-id/[email protected]) In the text protocol, data is first converted to string on the client...

It will be very nice to have a benchmark result. Don't forget that text columns (chars, varchars, json, jsonb etc.) will not make a difference, thus they are not binary....