错误OperationalError: (OperationalError) (2006, 'MySQL server has gone away')
我在 Flask 上编码项目时已经收到此错误,但我不明白为什么会收到此错误。
我有这样的代码(是的,如果代码小且执行速度快,那么没有错误)
db_engine = create_engine('mysql://root@127.0.0.1/mind?charset=utf8', pool_size=10, pool_recycle=7200)
Base.metadata.create_all(db_engine)
Session = sessionmaker(bind=db_engine, autoflush=True)
Session = scoped_session(Session)
session = Session()
# there many classes and functions
session.close()
这段代码返回错误'MySQL server has gone away'
,但一段时间后,当我在脚本中使用暂停时返回它。
Mysql 我从 openserver.ru 使用(它是 web 服务器,例如 wamp)。
谢谢..