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.
您好,我有在事务中工作的服务,它与远程 API 通信,我想在这个 API 中记录每个请求/响应,但是如果主事务回滚,任何日志也将被回滚。
我认为是克隆 DBAL 连接。它会在没有事务的情况下打开第二个连接,我可以在其中插入而不用担心回滚吗?
还有其他方法可以解决这个问题吗?
您可以通过只为该表使用非事务性存储引擎(例如 MyISAM)来使您的日志记录表不尊重事务。
这类似于 Oracle 中的自治事务,并在此问题中提出。