连接池2

parent 4aafa3ab
...@@ -34,7 +34,7 @@ tamp_user_engine = create_engine( ...@@ -34,7 +34,7 @@ tamp_user_engine = create_engine(
max_overflow=0, # 超过连接池大小外最多创建的连接 max_overflow=0, # 超过连接池大小外最多创建的连接
pool_size=100, # 连接池大小 pool_size=100, # 连接池大小
pool_timeout=5, pool_timeout=5,
pool_recycle=1800 pool_recycle=600
) )
tamp_pay_engine = create_engine( tamp_pay_engine = create_engine(
'mysql+pymysql://{user}:{password}@{host}:{port}/{db}?charset={charset}'.format( 'mysql+pymysql://{user}:{password}@{host}:{port}/{db}?charset={charset}'.format(
...@@ -47,7 +47,7 @@ tamp_pay_engine = create_engine( ...@@ -47,7 +47,7 @@ tamp_pay_engine = create_engine(
max_overflow=0, # 超过连接池大小外最多创建的连接 max_overflow=0, # 超过连接池大小外最多创建的连接
pool_size=100, # 连接池大小 pool_size=100, # 连接池大小
pool_timeout=5, pool_timeout=5,
pool_recycle=1800 pool_recycle=600
) )
redis = redis.Redis( redis = redis.Redis(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment