1 Star 0 Fork 0

孙冉/gitchat

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
db.py 1.18 KB
一键复制 编辑 原始数据 按行查看 历史
孙冉 提交于 2021-05-31 17:07 . chat爬取逻辑
# 导入:
import traceback
from sqlalchemy import create_engine
from sqlalchemy.exc import NoResultFound
from sqlalchemy.orm import sessionmaker, scoped_session
# 初始化数据库连接:
import thread_pool
from models import TChat
engine = create_engine('mysql+mysqlconnector://root:123456@localhost:3306/gitchat',
max_overflow=0, # 超过连接池大小外最多创建的连接
pool_size=120, # 连接池大小
pool_timeout=30, # 池中没有线程最多等待的时间,否则报错
pool_recycle=-1 # 多久之后对线程池中的线程进行一次连接的回收(重置)
)
# 创建DBSession类型:
SessionFactory = sessionmaker(bind=engine)
DBSession = scoped_session(SessionFactory)
def one(i):
print('申请到' + str(i))
db_session = DBSession()
try:
s = db_session.query(TChat).filter(TChat._id == '1').one()
except NoResultFound as e:
print(e)
db_session.commit()
db_session.close()
if __name__ == '__main__':
for i in range(100):
thread_pool.global_thread_pool.executor.submit(one, i)
while True:
pass
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wssra/gitchat.git
git@gitee.com:wssra/gitchat.git
wssra
gitchat
gitchat
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385