2021年1月15日

mysql是如何解决脏读、不可重复读、幻读

摘要: 数据库的两种读,每种读读的数据版本不一样,所以也称为MVCC,即多版本并发控制 a) 快照读 select * from where xxx 这种形式的都是快照读。 b) 当前读 update , insert ,delete ,select xx from xx for update , in s 阅读全文

posted @ 2021-01-15 20:46 1625101366 阅读(3713) 评论(2) 推荐(0)

导航