I wonder why django doesn\'t support connection pool? I can\'t bear open/close connection every request. I try to solve it, but hasn\'t a good solution.
I try to us
EDITED: look at Django persistent database connection (feature introduced in 1.6).
Persistent connections avoid the overhead of re-establishing a connection to the database in each request. They’re controlled by the CONN_MAX_AGE parameter which defines the maximum lifetime of a connection. It can be set independently for each database.