在只读数据库事务之后,提交更好还是回滚更好?
如果您有一个只读的数据库事务,您会提交还是回滚?有理由选择其中之一吗?其中一种方法是否可以提高数据库性能?
If you have a database transaction that should be read only, do you commit or rollback? Is there any reason to do one or the other? Does one of the approachs improve database performance?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
一些 RDMS(至少是 Oracle)具有 READ ONLY 隔离级别。否则,我更喜欢 ROLLBACK,因为它不会在事务日志中创建条目(从性能角度来看更好一点)。
更新
一些解释。
大多数 RDMS 记录所有已提交的事务以及与事务相关的更改。即使没有进行任何更改,服务器也会记录事务。我不认为存储无用的数据会浪费服务器资源。
Some RDMS (at least Oracle ) have READ ONLY isolation level. Otherwise, I prefer
ROLLBACK
since it doesn't create an entry in transaction log (a bit better from performance point of view).Update
Some explanations.
Most RDMS log all committed transactions and changes associated with transaction. Even if no changes are made, server logs a transaction. I don't see any points in wasting server resources by storing useless data.
我同意倾盆大雨046
我对只读操作执行以下操作。工作起来就像一个魅力,没有任何问题。
I agree with Downpour046
I do the following for read only operations. Works like a charm, no issues.