Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前正在使用actix-weband构建应用程序sqlx。我构建的架构与此源非常相似。
actix-web
sqlx
这基本上是一个包装数据库访问的特征,到目前为止一切都很好。但这假设每个方法都会从池中获取连接并执行它。没有办法共享事务工作流的连接(例如 SELECT FOR UPDATE ... process ... UPDATE)。
我可以使用哪个架构或库来实现这一目标?