|
|
|
|
|
by daenney
1613 days ago
|
|
I think you’re confusing row and table in your comment. Rows are never changed, so I’m not sure how they would use a row level lock. They have 1000s of concurrent transactions on that table for different credit holders. Locking the whole table every time means everyone is stalled, even though you only want transactions for a single credit holder to be serialised, not every single mutation of that table. |
|