I have been trying to understand the difference between the two. I'll document what I have found in hopes it'll be useful to the next person.
Both LOCK IN SHARE MODE
and FOR UPDATE
ensure no other transaction can update the rows that are selected. The difference between the two is in how they treat locks while reading data.
LOCK IN SHARE MODE
does not prevent another transaction from reading the same row that was locked.
FOR UPDATE
prevents other locking reads of the same row (non-locking reads can still read that row; LOCK IN SHARE MODE
and FOR UPDATE
are locking reads).
This matters in cases like updating counters, where you read value in 1 statement and update the value in another. Here using LOCK IN SHARE MODE
will allow 2 transactions to read the same initial value. So if the counter was incremented by 1 by both transactions, the ending count might increase only by 1 - since both transactions initially read the same value.
Using FOR UPDATE
would have locked the 2nd transaction from reading the value till the first one is done. This will ensure the counter is incremented by 2.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…