txpostgres icon indicating copy to clipboard operation
txpostgres copied to clipboard

Twisted wrapper for asynchronous PostgreSQL connections

Results 4 txpostgres issues
Sort by recently updated
recently updated
newest added

I'm a bit unclear on the details but `python-3.11` with `pip-23.2.1` on CentOS7 is refusing to install txpostgres for me: ``` pip install txpostgres ERROR: Could not find a version...

Occasionally I need to know how many rows where affected by a DELETE or UPDATE. This is currently not possible, since `runOperation` and `runQuery` both discard the cursor.

something that automaticly connects, reconnects, and checks out connections with optional pessimistic connection checking. With options for connection recycling, size, overflow, lifo/fifo. Similar to https://docs.sqlalchemy.org/en/latest/core/pooling.html#sqlalchemy.pool.QueuePool

I'm using `ConnectionPool` with `DeadConnectionDetector`. [Here's my connection function](https://gist.github.com/luhn/98d18dca00edae2af93a), if it helps. This morning, my primary database failed, which happened to be during a period of high-frequency querying. So of...