摘要: exp1(?=exp2):查找 exp2 前面的 exp1。 (?<=exp2)exp1:查找 exp2 后面的 exp1。 阅读全文
posted @ 2023-11-18 16:59 bitterteaer 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 当 expire_on_commit=True 时,commit 之后所有实例都会过期,之后再访问这些过期实例的属性时,SQLAlchemy 会重新去数据库加载实例对应的数据记录。 # SQLAlchemy 源码,非关键内容省略 class Session(_SessionClassMethods) 阅读全文
posted @ 2023-11-18 11:52 bitterteaer 阅读(166) 评论(0) 推荐(0) 编辑