连接池

parent 4c93d804
...@@ -32,9 +32,7 @@ tamp_user_engine = create_engine( ...@@ -32,9 +32,7 @@ tamp_user_engine = create_engine(
charset="utf8" charset="utf8"
), ),
max_overflow=0, # 超过连接池大小外最多创建的连接 max_overflow=0, # 超过连接池大小外最多创建的连接
pool_size=100, # 连接池大小 pool_size=100 # 连接池大小
pool_timeout=30, # 池中没有线程最多等待的时间,否则报错
pool_recycle=-1 # 多久之后对线程池中的线程进行一次连接的回收(重置)
) )
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(
...@@ -45,9 +43,7 @@ tamp_pay_engine = create_engine( ...@@ -45,9 +43,7 @@ tamp_pay_engine = create_engine(
password=config[env]['MySQL']['password'], password=config[env]['MySQL']['password'],
charset="utf8"), charset="utf8"),
max_overflow=0, # 超过连接池大小外最多创建的连接 max_overflow=0, # 超过连接池大小外最多创建的连接
pool_size=100, # 连接池大小 pool_size=100 # 连接池大小
pool_timeout=30, # 池中没有线程最多等待的时间,否则报错
pool_recycle=-1 # 多久之后对线程池中的线程进行一次连接的回收(重置)
) )
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