1 个仓库
Event notifications triggered by the database session commit process to track model modifications.
Distinct from Commit-Based Change Tracking: Existing candidates focus on Git commits or distributed logs, not ORM session commit events.
Explore 1 awesome GitHub repository matching data & databases · Session Commit Signals. Refine with filters or upvote what's useful.
Flask-SQLAlchemy 是一个将 SQLAlchemy 关系数据库工具包与 Flask Web 框架集成的工具包。它通过将数据库表结构定义为 Python 类来实现关系数据建模,并管理 Web 应用程序中数据库记录的持久化和检索。 该项目将数据库会话生命周期绑定到活动的应用程序请求上下文,以确保自动连接清理。它为 Web 数据访问提供了专门的实用程序,包括查询结果分页,以及在请求的数据库记录缺失时自动触发 404 Not Found 响应的机制。 该扩展涵盖了广泛的数据库管理功能,包括声明式模型映射、模式反射和物理表结构的生成。它通过多绑定查询路由支持高级连接管理,并提供用于审计 SQL 查询性能和执行时间的观测工具。
Emits event notifications before and after session commits to track and trigger logic based on modified model instances.