Hello,
While this is not a concern of PT, you might have the knowledge about this:
When I start a query like psql -Upostgres -dMyBase -c"SELECT 2+2;", it takes 270 ms.
On the other hand, something like psql -Upostgres -dMyBase -c"SELECT avg(cnt_hands) FROM holdem_cache;" takes only about 280 ms. So basicly there is a period of about 269ms to start up psql.exe without accepting any query. Do you have a clue where that delay originates from, and most importantly, how I can avoid it? I´m running things inside a loop, so the 270ms DOES matter.
Thanks