]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- cross-linking for pool recycle feature
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 30 Oct 2015 15:47:32 +0000 (11:47 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 30 Oct 2015 15:47:32 +0000 (11:47 -0400)
doc/build/core/pooling.rst
lib/sqlalchemy/dialects/mysql/base.py

index e00db02a8997625e1ca4cd29785a387c93b67d33..094eff4c4636f88b2710070e67f79d7adf33a219 100644 (file)
@@ -209,6 +209,8 @@ correspond to a single request failing with a 500 error, then the web applicatio
 continuing normally beyond that.   Hence the approach is "optimistic" in that frequent
 database restarts are not anticipated.
 
+.. _pool_setting_recycle:
+
 Setting Pool Recycle
 ~~~~~~~~~~~~~~~~~~~~~~~
 
index 2c78de2fc685f4245b55fe2aa5e24bc923eba33a..ad3ffa6f8c1e340c392b5e134e383370f6911a26 100644 (file)
@@ -32,6 +32,11 @@ the ``pool_recycle`` option which controls the maximum age of any connection::
 
     engine = create_engine('mysql+mysqldb://...', pool_recycle=3600)
 
+.. seealso::
+
+    :ref:`pool_setting_recycle` - full description of the pool recycle feature.
+
+
 .. _mysql_storage_engines:
 
 CREATE TABLE arguments including Storage Engines