Dmitry Bubnenkov

Results 76 comments of Dmitry Bubnenkov

I just to Volta be more hight level then D. In the past I very liked Tango lib, that was for me much easier to use then Phobos. I do...

For compiler to do correction -1 is very easy. Now programmer should this correction in mind. In math when we are calculate something we are count, we count from 1,...

To reproduce you need set long timeout here: ``` connection = PostgreSQLConnection('localhost', 5432, 'test', username: 'postgres', password: '12345', queryTimeoutInSeconds: 3600); // here ``` And to try run long request here:...

It seems that I faced with very similar issue! At some point requests start to be processed extremely slowly and until I kill the connection the speed won't increase https://stackoverflow.com/questions/68375709/why-can-a-query-periodically-take-10-times-longer-to-execute

@isoos oh cool! Thanks for fast answer. I just to thought how to contact with you. Even wrote to Telegram (do not know is it you or not). Am I...

@isoos but is there any chance that driver will get fixed in nearest time? I can try postgres_pool, but I also can wait for a fixing driver.

@isoos thanks! Is it possible to do something like: ``` main() { // ... Timer.periodic(Duration(hours: 1), (timer) { connection.close(); connection.open(); }); ``` I do not want to rewrite code for...

@isoos Could you help me, I am writing on dart not too often. How to pass this connections settings? ``` PgPoolSettings? settings; void main() async { pg = PgPool( PgEndpoint(...

I found interesting setting in new PG. Is it about this issue? https://www.postgresql.org/docs/14/runtime-config-client.html#GUC-IDLE-SESSION-TIMEOUT Пт, 23 июля 2021 г. в 20:24, István Soós ***@***.***>: > @bubnenkoff : I've updated the example...