MySQL 成本:InnoDB on Cascade 或 MyISAM 单独删除
我很好奇就服务器使用的资源而言,哪种方法更具成本效益:使用 MyISAM 引擎遍历多个表或多个删除语句的On Cascade Delete
?
I'm curious as to which would be more cost efficient in terms of resources used by the server: On Cascade Delete
that traverses multiple tables or multiple delete statements with the MyISAM engine?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
级联删除有多个优点:
On Cascade Delete have multiple advantages:
第二个选项还要求系统与 mysql 客户端和 mysql 服务器进行对话,而第一个选项只需在一次调用中完成。如果将所有内容都放在事务中,则使用 InnoDB 修复起来也更容易。
The second option will also require the system to talk back and froth the mysql client and the mysql server, while the first option will just do it in one call. Also easier to fix with InnoDB if you put it all in a transaction.