issues
search
LichongQ
/
record
for record something necessary
0
stars
0
forks
source link
数据库
#9
Open
LichongQ
opened
6 years ago
LichongQ
commented
6 years ago
数据库索引
索引原理:
http://blog.codinglabs.org/articles/theory-of-mysql-index.html
数据库隔离级别:【read_uncommited, read_commited,repeated_read, serializable】 脏读、不可重复读(update)、幻读(insert、delete):
https://www.jianshu.com/p/4e3edbedb9a8
脏读和不可重复读:当前事务没有对其他事务的update隔离,导致读取到了脏数据,以及不同时刻读取到的内容不同 幻读:当前事务没有对其他事务的insert和delete隔离,导致当前事务读取到了其他事务增删的数据(或条数)