cqueues-pgsql icon indicating copy to clipboard operation
cqueues-pgsql copied to clipboard

luapgsql with cqueues for non-blocking postgres queries

Results 1 cqueues-pgsql issues
Sort by recently updated
recently updated
newest added

`PQPing` is a blocking operation. It doesn't seem possible to reimplement using libpq: `PQPing` works by creating a temporary conenction object, calling [`internal_ping`](http://doxygen.postgresql.org/fe-connect_8c.html#a81cdb2f1cd25adf0db94b9088bf88122) and then closing it. `internal_ping` uses internal...