MySQL MyISAM table locking

冷暖自知 提交于 2019-12-06 21:28:27

问题


Does a MySQL MyISAM table gets locked when records are deleted from it?


回答1:


MyISAM tables supports table level locking, and yes, a write lock is employed when deleting (or insert & updating) records.

For more info, see Internal Locking Methods



来源:https://stackoverflow.com/questions/1951161/mysql-myisam-table-locking

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!