Isolation Level - Serializable. When should I use this?

后端 未结 4 868
一生所求
一生所求 2020-12-25 10:54

I understand that an Isolation level of Serializable is the most restrictive of all isolation levels. I\'m curious though what sort of applications would require this level

4条回答
  •  天命终不由人
    2020-12-25 11:47

    It behaves in a way that when you try to update a row, It simply blocks the updation process until the transaction is completed.

提交回复
热议问题