悲观锁思想就是,当前线程要进来修改数据时,别的线程都得拒之门外。比如,可以使用select・・・for update
select * from User where name= ‘jay’ for update
以上这条sql语句会锁定了 User表中所有符合检索条件(name= ‘jay’)的记录。本次事务提交之前,别的线程都无法修改这些记录。

Was this helpful?

0 / 0

发表回复 0

Your email address will not be published.