The python tag has no wiki summary.
5
votes
1answer
18 views
How to best use connection pooling in SQLAlchemy for PgBouncer transaction-level pooling?
Using SQLAlchemy to query a PostgreSQL database behind PgBouncer, using transaction-level pooling.
What is the best pattern to use for this kind of set up? Should I have one-engine-per-process, ...
3
votes
3answers
35 views
What is the best way to store X509 certificate in PostgreSQL database?
I'm working on web authenticate system where users will digitally sign random tokens and this will be checked with X509 certificates stored on the server.
Therefore I have to store several X509 ...
0
votes
0answers
21 views
How to use MySQL proxy with Python
I have two questions regarding MySQL proxy:
How can I use MySQL proxy to track all data which to my server?
How can I embed the MySQL proxy into a Python script to track
all traffic which is coming ...
1
vote
3answers
70 views
Anyone want to try a script bash or python?
I need to automate master binary log purging to occur so that purging never goes back further than the last slave has the updated info for.
These slaves are mobile and there are 3 of them, and sync ...
0
votes
0answers
100 views
Tornado and Postgres [closed]
I'm using demo from facebook's tornado
But I don't want to use MySQL and trying to replace it with PG
So I went ahead and modified like this :
define("port", default=8888, help="run on the given ...