According to the MySQL manual:
For large tables, table locking is often better than row locking,
Why is this? I would presume that row-level locking is better because when you lock on a larger table, you're locking more data.
|
According to the MySQL manual:
Why is this? I would presume that row-level locking is better because when you lock on a larger table, you're locking more data.
| |||||
feedback
|
|
from the (pre-edit) link
use a row level lock if you are only hitting a row or two. If your code hits many or unknown rows, stick with table lock. | |||
feedback
|
From http://www.devshed.com/c/a/MySQL/MySQL-Optimization-part-2/
| |||
|
feedback
|
"I would presume that row-level locking is better because" [you lock less data]. First "better" is poorly defined in this page. It appears that better means "faster". Row-level locking cannot (in general) be faster because of contention for locks. Locking each row of a large result set means the very real possibility of a conflict with another large result set query and a rollback. | |||
|
feedback
|
|
In general if you need to lock a lot of data then 1 lock on a big table is cheaper than a whole bunch of row level or page locks | |||
|
feedback
|
|
A The RDBMS automatically escalates locking levels internally. | |||||||
|
feedback
|